mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
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.
18 lines
266 B
INI
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
|