From 4b55f00f0eba2c4b15595e5939720f52a3468209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9za=20B=C3=BAza?= Date: Sun, 25 Mar 2018 15:21:59 +0200 Subject: [PATCH] Add editorconfig file to define coding style --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a1f2d20 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +# Indentation for all Yaml files +[*.yml] +indent_style = space +indent_size = 2 + +# Indentation for all Ansible template files +[*.j2] +indent_style = space +indent_size = 4