2018-09-02 23:26:15 +03:00
|
|
|
# http://editorconfig.org
|
2018-09-02 16:04:44 +03:00
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
end_of_line = lf
|
2018-09-02 23:26:15 +03:00
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
2018-09-02 16:04:44 +03:00
|
|
|
insert_final_newline = true
|
2018-09-02 23:26:15 +03:00
|
|
|
|
|
|
|
# The JSON files contain newlines inconsistently
|
|
|
|
[*.json]
|
|
|
|
insert_final_newline = ignore
|
|
|
|
|
|
|
|
# Minified JavaScript files shouldn't be changed
|
|
|
|
[**.min.js]
|
|
|
|
indent_style = ignore
|
|
|
|
insert_final_newline = ignore
|
|
|
|
|
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|