# File: .editorconfig

root = true

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

[*.py]
tab_width     = 4
indent_size   = 4
indent_style  = space

[*.sh]
indent_style        = space
indent_size         = 2
shell_variant       = bash
binary_next_line    = false
switch_case_indent  = true
space_redirects     = false
keep_padding        = true
function_next_line  = false
never_split         = true

[Makefile]
indent_style  = tab
tab_width     = 4
