cfg/.editorconfig
Knut Ahlers 82418e6078
Include Makefile.suffix in Makefile directive
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2022-09-02 15:54:13 +02:00

31 lines
504 B
INI

root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.go]
indent_style = tab
tab_width = 2
[*.md]
trim_trailing_whitespace = false
[*.py]
# https://google.github.io/styleguide/pyguide.html#s3.4-indentation
indent_size = 4
indent_style = space
[*.sh]
# https://google.github.io/styleguide/shellguide.html#s5.1-indentation
indent_size = 2
indent_style = space
[Makefile*]
indent_style = tab
tab_width = 2