summaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-04-25 11:25:16 -0400
committerCorey Hulen <corey@hulen.com>2016-04-25 08:25:16 -0700
commitbfc6e4e6b6171b601decfa00a8a729f843a1a758 (patch)
tree6a480d4a4fa84333eca8f98fa5f285eada14acb9 /.editorconfig
parent3f93aafbc6b4f304d9458c8a4d08c507d45103e2 (diff)
downloadchat-bfc6e4e6b6171b601decfa00a8a729f843a1a758.tar.gz
chat-bfc6e4e6b6171b601decfa00a8a729f843a1a758.tar.bz2
chat-bfc6e4e6b6171b601decfa00a8a729f843a1a758.zip
PLT-2619/PLT-2661 Removed line numbers from markdown code blocks (#2795)
* Changed .editorconfig to indent CSS files using spaces * Removed line numbers from markdown code blocks and made them wrap when no language is specified
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig6
1 files changed, 5 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig
index 5325248da..b8bc90393 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -7,7 +7,7 @@ end_of_line = lf
insert_final_newline = false
charset = utf-8
-[*.{go,scss}]
+[*.go]
indent_style = tab
[*.{js,jsx,json,html}]
@@ -25,3 +25,7 @@ indent_size = 2
[Makefile]
indent_style = tab
+
+[*.scss]
+indent_style = space
+indent_size = 4 \ No newline at end of file