What could be .editorconfig settings?
Hi,
If we assume we continue with standardization, what should be .editorconfig
settings?
Below is a file I use for another project and it seems it suits well for Damned Lies also. What do you think?
root = true
[*]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8
[*.yml]
indent_size = 2
[*.{scss,css}]
indent_size = 2
max_line_length = 119
[*.html]
indent_size = 4
max_line_length = 199
[*.py]
max_line_length = 119
[Makefile]
indent_style = tab