# EditorConfig is awesome: 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
charset = utf-8
trim_trailing_whitespace = true

# Indentation
[*.{py,pyi}]
indent_style = space
indent_size = 4

[*.{json,jsonl,yaml,yml}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false

# Python specific
[*.py]
max_line_length = 100

# Exclude patterns
[*.{txt,log,jsonl}]
trim_trailing_whitespace = false

[*.{svg,png,jpg,jpeg,gif,ico,woff,woff2}]
insert_final_newline = false
trim_trailing_whitespace = false