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
12
13[*.{js,scss}]
14insert_final_newline = true
15indent_style = space
16indent_size = 2
17
18[*.hbs]
19insert_final_newline = false
20
21[*.{diff,md}]
22trim_trailing_whitespace = false
23