From 5a95cb67720ead7284144e475ebb886ec2b1d8d8 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Fri, 5 Nov 2021 08:37:04 -0700 Subject: [PATCH] editorconfig: init --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ae447db --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space + +[*.{yml,yaml}] +indent_size = 2