mytinytodo/.editorconfig
2025-02-15 13:18:24 +03:00

32 lines
583 B
INI

# top-most EditorConfig file
root = true
# 'insert_final_newline = false' should not remove last empty line
[*]
charset = utf-8
end_of_line = lf
# tab_width here is only used to represent tabs if indent_size is not set
tab_width = 4
trim_trailing_whitespace = true
insert_final_newline = true
[*.php]
indent_style = space
indent_size = 4
[*.js]
indent_style = space
tab_width = 4
[*.{css,yml,html,svg,xml}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
insert_final_newline = false
[/src/includes/theme.php]
indent_style = space
indent_size = 2