# EditorConfig helps maintain consistent coding styles between editors & IDEs
# https://editorconfig.org
root = true

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

# Keep README & docs within the same column width as code
[*.{py,toml,yaml,yml,md}]
max_line_length = 100

# Make makes you use tabs
[Makefile]
indent_style = tab
