mirror of
https://github.com/gravitystorm/openstreetmap-carto.git
synced 2025-02-20 20:24:35 +01:00
24 lines
465 B
INI
24 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
|