main
 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]
21indent_style = space
22indent_size = 2
23
24[*.css]
25indent_style = space
26indent_size = 2
27
28[*.html]
29indent_style = space
30indent_size = 2
31
32[*.md]
33trim_trailing_whitespace = false