# EditorConfig — https://editorconfig.org

root = true

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

[*.py]
indent_size = 4
max_line_length = 88

[*.{yml,yaml}]
indent_size = 2

[*.{json,jsonc}]
indent_size = 2

[*.{toml,cfg,ini}]
indent_size = 4

[*.md]
trim_trailing_whitespace = false

[*.{sh,bash,zsh}]
indent_size = 2

[Makefile]
indent_style = tab

[Dockerfile*]
indent_size = 4
