0# EditorConfig helps developers define and maintain consistent
1# coding styles between different editors and IDEs
2# editorconfig.org
4root = true
6[*]
7indent_style = space
8indent_size = 4
10# We recommend you to keep these unchanged
11end_of_line = lf
12charset = utf-8
13trim_trailing_whitespace = true
14insert_final_newline = true
16[*.md]
17trim_trailing_whitespace = false
19[package.json]
20indent_style = space
21indent_size = 2
23[*.yml]
24indent_style = space
25indent_size = 4