From bccc1c0682a20e776ea419c4e1be270b9aa16b6f Mon Sep 17 00:00:00 2001 From: ramnes Date: Mon, 10 Jul 2023 14:34:52 +0200 Subject: [PATCH] Add .editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..2624f9075b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +end_of_line = lf + +[*.{py,ts,tsx}] +indent_style = space +insert_final_newline = true + +[*.py] +indent_size = 4 +trim_trailing_whitespace = true + +[*.{ts,tsx}] +indent_size = 2