1 | # EditorConfig helps developers define and maintain consistent
|
2 | # coding styles between different editors and IDEs
|
3 | # editorconfig.org
|
4 |
|
5 | root = true
|
6 |
|
7 | [*]
|
8 |
|
9 | indent_style = space
|
10 | indent_size = 4
|
11 |
|
12 | end_of_line = lf
|
13 | charset = utf-8
|
14 | trim_trailing_whitespace = true
|
15 | insert_final_newline = true
|
16 |
|
17 | [{.babelrc,.eslintrc,.codeclimate.yml,.travis.yml,*.json}]
|
18 | indent_size = 2
|