diff options
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/.editorconfig b/.editorconfig index 5ba69e2..6e87a00 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,18 +1,13 @@ -# EditorConfig is awesome: http://EditorConfig.org - -# top-most EditorConfig file +# Editor configuration, see http://editorconfig.org root = true -# Unix-style newlines with a newline ending every file [*] -end_of_line = lf charset = utf-8 -trim_trailing_whitespace = true +indent_style = space +indent_size = 2 insert_final_newline = true +trim_trailing_whitespace = true -# tab indentation -[framework/**.js] -[framework/**.jsx] -[resources/**.scss] -indent_style = space -indent_size = 4 +[*.md] +max_line_length = off +trim_trailing_whitespace = false |