From 00d4e7d02b631b101a8a9dced11ec8aabe5f4e3e Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 19 Aug 2023 23:04:48 +0200 Subject: [PATCH] Add basic .editorconfig --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7cc9d80 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +max_line_length = 120 +tab_width = 4 + +[{*.yml,*.yaml,*.json}] +indent_size = 2 +tab_width = 2 + +[{*.py,*.pyi}] +# Black defaults to this +max_line_length = 88 \ No newline at end of file