From: XhmikosR Date: Sat, 8 Apr 2023 11:34:31 +0000 (+0300) Subject: Update .editorconfig X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5de92647b95cd89cdd073b7d435cb1009ad0d49f;p=stevenblack-hosts.git Update .editorconfig --- 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