1 | # EditorConfig helps developers define and maintain consistent
|
2 | # coding styles between different editors and IDEs
|
3 | # http://editorconfig.org
|
4 |
|
5 | root = true
|
6 |
|
7 | [*]
|
8 | # Change these settings to your own preference
|
9 | indent_style = space
|
10 | indent_size = 2
|
11 |
|
12 | # We recommend you to keep these unchanged
|
13 | end_of_line = lf
|
14 | charset = utf-8
|
15 | trim_trailing_whitespace = true
|
16 | insert_final_newline = true
|
17 |
|
18 | [*.md]
|
19 | trim_trailing_whitespace = false
|
20 |
|
21 | [{package.json,bower.json}]
|
22 | indent_size = 2
|