pcmt/.editorconfig

23 lines
320 B
INI
Raw Normal View History

root = true
[*]
charset = utf-8
end_of_line = lf
2023-04-12 23:14:21 +02:00
trim_trailing_whitespace = true
insert_final_newline = true
# go files (excluding templates)
[*.{go,mod,sum}]
indent_style = tab
indent_size = 4
tab_width = 4
2023-04-12 23:14:21 +02:00
# go html templates
[*.tmpl]
indent_style = tab
indent_size = 2
tab_width = 2
[Makefile]
indent_style = tab