# https://EditorConfig.org

# top-most EditorConfig file
root = true

# Make sure every file:
# - Uses utf-8
# - Indents with spaces instead of tabs
# - Uses two space indents
# - Uses Unix-style newlines
# - Has a newline at the end of every file
# - Trims trailing whitespace
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
