# Reference: https://editorconfig.org
# Top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Default charset
charset = utf-8

# Indentation
indent_style = space
indent_size = 4

# Whitespace
trim_trailing_whitespace = true

[*.py]
max_line_length = 79

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

[*.md]
trim_trailing_whitespace = false
