From 4559ffcbd54ba423ae890d4bc63b3c1ec19cded0 Mon Sep 17 00:00:00 2001 From: th33xitus Date: Fri, 28 Jan 2022 20:31:05 +0100 Subject: [PATCH] chore: add .editorconfig (#582) --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..14de0e82 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# http://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf + +[*.{js,ts,vue}] +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,yml}] +indent_size = 2 +indent_style = space