2015-09-30 22:12:04 +00:00
|
|
|
# EditorConfig helps developers define and maintain consistent
|
|
|
|
# coding styles between different editors and IDEs
|
|
|
|
# editorconfig.org
|
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
indent_style = tab
|
2019-02-03 08:33:42 +00:00
|
|
|
indent_size = 4
|
2015-09-30 22:12:04 +00:00
|
|
|
|
|
|
|
end_of_line = lf
|
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
|
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|
2019-07-17 07:45:34 +00:00
|
|
|
[*.{json,md,yml}]
|
2015-09-30 22:12:04 +00:00
|
|
|
indent_style = space
|
2019-02-03 08:33:42 +00:00
|
|
|
indent_size = 2
|