Files
fulpstation/.editorconfig
Aleksej Komarov d41705273c Fix the newline problem in editorconfig
With current editor config, if you have trailing whitespace on final new line, it doesn't get trimmed, and no extra newline gets added, which breaks linters.

Whitespace trimming is good overall. And an additional "utf-8" enforcement.

Webedit kung-fu.
2019-11-26 14:43:11 +02:00

18 lines
266 B
INI

[*]
indent_style = tab
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.yml]
indent_style = space
indent_size = 2
[*.py]
indent_style = space
[/tgui/**/*.{js,styl,ract,json,html}]
indent_style = space
indent_size = 2