diff --git a/.editorconfig b/.editorconfig index aa8db0762..fcc94824e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,14 +1,20 @@ +# editorconfig.org + root = true -[*.py] +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 indent_style = space +insert_final_newline = true trim_trailing_whitespace = true -indent_size = 4 -end_of_line = LF [*.bat] -end_of_line = CRLF +end_of_line = crlf [*.md] trim_trailing_whitespace = false -insert_final_newline = true + +[*.py] +indent_size = 4