From 5935b52c236baab52e642d5a199624818c08b50d Mon Sep 17 00:00:00 2001 From: evgfilim1 Date: Thu, 5 Aug 2021 16:18:39 +0500 Subject: [PATCH] Improve .editorconfig This is a continuation of https://github.com/aiogram/aiogram/pull/653#pullrequestreview-721944497 --- .editorconfig | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.editorconfig b/.editorconfig index 9a80d2d5..95d398e8 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,21 +3,16 @@ root = true [*] charset = utf-8 end_of_line = lf +indent_size = 4 +indent_style = space insert_final_newline = true trim_trailing_whitespace = true - -[*.py] -indent_style = space -indent_size = 4 max_line_length = 99 -[*.{yml, yaml}] -indent_style = space +[*.{yml,yaml}] indent_size = 2 [*.{md,txt}] -indent_style = space -indent_size = 4 trim_trailing_whitespace = false [Makefile]