From d669116cf0769b9313e850379f7936896d032afc Mon Sep 17 00:00:00 2001 From: Nichlas Severinsen Date: Mon, 3 Aug 2020 20:04:12 +0200 Subject: [PATCH] Added editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..08c490d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true + +[*.{yml,yaml}] +indent_style = space +indent_size = 2 + +[*.py] +indent_style = space +indent_size = 4