2022-04-09 12:33:57 +00:00
|
|
|
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
|
2022-04-12 23:29:38 +00:00
|
|
|
tab_width = 2
|
2022-04-09 12:33:57 +00:00
|
|
|
|
|
|
|
[*.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
|
2022-04-29 21:38:36 +00:00
|
|
|
|
|
|
|
[Makefile]
|
|
|
|
indent_style = tab
|
|
|
|
tab_width = 2
|