nextcloud/.editorconfig
Christian Oliff 7678ea6ce3
change .editorconfig to not add newline on SVGs
adding a newline to SVGs is unnecessary and increases filesize by 1 byte :-D
2020-01-21 20:42:05 +09:00

18 lines
252 B
INI

# https://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[*.svg]
insert_final_newline = false