From 2c50ddee049c36ce91b73f1a04e2dbad78b440a5 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Mon, 17 Jan 2022 18:29:30 +0100 Subject: [PATCH] :zap: Add .editorconfig file --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..fdda219 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*] +charset = utf-8 +indent_style = tab +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[package.json] +indent_style = space +indent_size = 2 + +[*.yml] +indent_style = space +indent_size = 2