From 4116f94fbbab35b45e733a7167c1301ba28afb94 Mon Sep 17 00:00:00 2001 From: Levente Polyak Date: Wed, 25 Aug 2021 18:55:19 +0200 Subject: [PATCH] feature(editorconfig): add standard python settings --- .editorconfig | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 011174b..2039c1e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,14 @@ root = true + [*] end_of_line = lf charset = utf-8 indent_style = tab -indent_size = 8 +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.py] +indent_style = space +indent_size = 4 +max_line_length = 119