ale/.editorconfig
Dmitri Vereshchagin d82d968f8a
Set two-space indent for *.vader in .editorconfig (#4849)
Will be useful for those who use an EditorConfig plugin.
2024-10-31 21:28:44 +09:00

19 lines
362 B
INI

# EditorConfig is awesome: http://EditorConfig.org
# Top-most EditorConfig file
root = true
# Match and apply these rules for all file
# types you open in your code editor
[*]
# Unix-style newlines
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.vader]
indent_style = space
indent_size = 2