Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-npm-starter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@pm.me>2020-05-19 15:50:38 +0300
committerMark Otto <otto@github.com>2020-05-27 21:28:57 +0300
commitaf5bd9808528791ed7cebf0dd6a10f430d8d0ff4 (patch)
tree5c75323b6da9b3c597096063e3adb136e48f5bbd
parent5977f48d3d2a8fc49294ba88e842faf55722739a (diff)
Create .editorconfig
editorconfig is always useful to have to help ensure consistent code formatting. This config provides good defaults and is copied from: https://github.com/twbs/bootstrap/blob/master/.editorconfig
-rw-r--r--.editorconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..f29d257
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,11 @@
+# editorconfig.org
+
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 2
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true