# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

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

# This is the top-most .editorconfig file (do not search in parent directories)
root = true

# 4 space indentation for all starlark files
[*.star]
indent_style = space
indent_size = 4

# 4 space indentation for all python files
[*.py]

# 2 space indentation for all yaml files
[*.yml, *.yaml]
indent_style = space
indent_size = 2

# 2 space indentation for all json files
[*.json]
indent_style = space
indent_size = 2

[*.yaml]
indent_style = space
indent_size = 2
