UNPKG

543 BPlain TextView Raw
1# EditorConfig helps developers define and maintain consistent
2# coding styles between different editors and IDEs
3# editorconfig.org
4
5root = true
6
7
8[*]
9end_of_line = lf
10charset = utf-8
11trim_trailing_whitespace = true
12insert_final_newline = true
13indent_style = space
14indent_size = 2
15
16[*.js]
17indent_style = space
18indent_size = 2
19
20[*.hbs]
21insert_final_newline = false
22indent_style = space
23indent_size = 2
24
25[*.css]
26indent_style = space
27indent_size = 2
28
29[*.html]
30indent_style = space
31indent_size = 2
32
33[*.{diff,md}]
34trim_trailing_whitespace = false