From 5de92647b95cd89cdd073b7d435cb1009ad0d49f Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 8 Apr 2023 14:34:31 +0300 Subject: [PATCH] Update .editorconfig --- .editorconfig | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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