From c5e805c10360bae6b71c2909a8e828a9ae53470e Mon Sep 17 00:00:00 2001 From: dgmid Date: Tue, 3 Dec 2019 08:45:10 +0100 Subject: [PATCH] Added .editorconfig --- .editorconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d6df833 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +root = true + +[*] +indent_style = tab +charset = utf-8 +trim_trailing_whitespace = false +end_of_line = lf +insert_final_newline = true + +[*.js] +indent_size = 4 + +[*.html] +indent_size = 4 + +[*.sass] +indent_size = 4 + +[*.json] +indent_style = space +indent_size = 2