# Defines the coding style for different editors and IDEs.
# https://editorconfig.org/

# top-most EditorConfig file
root = true

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

[*.py]
max_line_length = 120

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

# Documentation.
[*.md]
max_line_length = 0
trim_trailing_whitespace = false

# Git commit messages.
[COMMIT_EDITMSG]
max_line_length = 0
trim_trailing_whitespace = false
