From 1b1931ff4d40b483bbab7f99305d87c3d780dff5 Mon Sep 17 00:00:00 2001 From: Gareth Flowers Date: Sat, 19 Mar 2022 23:26:51 +0000 Subject: [PATCH] chore(conf): adds .editorconfig --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a14be8d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true + +[*.yml] +indent_size = 2 +indent_style = space