1; Check http://editorconfig.org/ for more informations
2root = true
3
4[*]
5indent_style = tab
6tab_width = 8
7trim_trailing_whitespace = true
8insert_final_newline = true
9
10[*.yml]
11indent_style = space
12indent_size = 2
13
14[*.md]
15indent_style = space
16indent_size = 4
17trim_trailing_whitespace = false
18
19[*.py]
20indent_style = space
21indent_size = 4
22