28 lines
479 B
INI
28 lines
479 B
INI
|
|
# Defining consistent coding styles between different editors and IDEs
|
||
|
|
# Support info @ http://editorconfig.org/#download
|
||
|
|
# editorconfig.org
|
||
|
|
|
||
|
|
# Top-most EditorConfig file
|
||
|
|
root = true
|
||
|
|
|
||
|
|
# General settings
|
||
|
|
[*]
|
||
|
|
charset = utf-8
|
||
|
|
end_of_line = lf
|
||
|
|
trim_trailing_whitespace = true
|
||
|
|
insert_final_newline = true
|
||
|
|
indent_style = space
|
||
|
|
indent_size = 4
|
||
|
|
|
||
|
|
# CSS settings
|
||
|
|
[*.css]
|
||
|
|
indent_size = 2
|
||
|
|
|
||
|
|
# YAML settings
|
||
|
|
[*.yml]
|
||
|
|
indent_size = 2
|
||
|
|
|
||
|
|
# Markdown settings
|
||
|
|
[*.md]
|
||
|
|
trim_trailing_whitespace = false
|