# http://editorconfig.org

root = true

# Defaults for every file
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.py]
indent_style = space
indent_size = 4

[*.json]
indent_size = 2

# Makefiles must use tabs for indentation
[Makefile]
indent_style = tab
