29 lines
470 B
INI
29 lines
470 B
INI
# EditorConfig is awesome: https://EditorConfig.org
|
|
|
|
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# Unity C# files
|
|
[*.cs]
|
|
charset = utf-8
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
# YAML (Unity scenes and prefabs)
|
|
[*.{yml,yaml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# Markdown
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
insert_final_newline = true
|
|
|
|
# JSON
|
|
[*.json]
|
|
indent_style = space
|
|
indent_size = 2
|