You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
465 B
INI
25 lines
465 B
INI
# http://EditorConfig.org
|
|
|
|
root = true
|
|
|
|
# Defaults apply to all files
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# 4 space indentation for Lua and Python
|
|
[*.{lua,py}]
|
|
indent_size = 4
|
|
|
|
# Leave SVG files alone, we have a mix of tabs and spaces
|
|
[*.svg]
|
|
indent_style = undef
|
|
indent_size = undef
|
|
|
|
# Lastmod files are used by the scripts and should not contain newlines
|
|
[*.lastmod]
|
|
insert_final_newline = false
|