18 lines
280 B
INI
18 lines
280 B
INI
|
# EditorConfig is awesome: https://EditorConfig.org
|
||
|
root = true
|
||
|
|
||
|
# Unix-style newlines with a newline ending every file
|
||
|
[*]
|
||
|
end_of_line = lf
|
||
|
insert_final_newline = true
|
||
|
|
||
|
# Python
|
||
|
[*.py]
|
||
|
indent_style = tab
|
||
|
indent_size = 2
|
||
|
|
||
|
# YML
|
||
|
[*.(yml|yaml)]
|
||
|
indent_style = space
|
||
|
indent_size = 2
|