24 lines
492 B
INI
24 lines
492 B
INI
|
# Top-most EditorConfig file
|
||
|
root = true
|
||
|
|
||
|
# Common settings for all files. I don't specify indent type here, because
|
||
|
# some EditorConfig implementations (notably Atom) will cause default settings
|
||
|
# and behaviors (like tab type auto-detection) to be overridden.
|
||
|
[*]
|
||
|
charset = utf-8
|
||
|
end_of_line = lf
|
||
|
trim_trailing_whitespace = true
|
||
|
insert_final_newline = true
|
||
|
|
||
|
[*.go]
|
||
|
indent_style = tab
|
||
|
indent_size = 4
|
||
|
|
||
|
[*.md]
|
||
|
indent_style = space
|
||
|
indent_size = 2
|
||
|
|
||
|
[*.yml]
|
||
|
indent_style = space
|
||
|
indent_size = 2
|