# Global EditorConfig (~/.editorconfig)
# https://editorconfig.org/
# Project-level .editorconfig overrides this when present.

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2

[*.{py,pyi}]
indent_size = 4

[*.{md,markdown}]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab

[*.{go,rs}]
indent_style = tab

[*.{yml,yaml,tf,hcl,json,toml}]
indent_size = 2

[COMMIT_EDITMSG]
max_line_length = 72
