From 8e053b39f3f42568bba44117320882b20e8d70ce Mon Sep 17 00:00:00 2001 From: Gareth Flowers Date: Wed, 16 Oct 2019 17:02:53 +0100 Subject: [PATCH] chore(): 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