From 2a81dbe09d26ba5be654352c03242ed56d304c4f Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Tue, 15 Nov 2022 00:47:19 +0100 Subject: [PATCH] =?UTF-8?q?P=C5=99id=C3=A1n=20editorconfig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..e99349e1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*] +charset = utf-8 +# Unix-y lines +end_of_line = lf +insert_final_newline = true + +[*.py] +indent_style = tab +# I do not think we prescribe, how big a tab is. +indent_size = tab + +# Migrations are auto-generated and thus follow PEP-8, let's not fight with that +[*/migrations/*.py] +indent_style = space +indent_size = 4