From 133cee76dad63aad947ff50b34edc338faffe588 Mon Sep 17 00:00:00 2001 From: Frank Fesevur Date: Mon, 14 Aug 2017 23:44:24 +0200 Subject: [PATCH] Add EditorConfig file --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1e49101 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig: http://EditorConfig.org + +root = true + +[*] +indent_size = 4 +indent_style = space +trim_trailing_whitespace = true + +[*.sh] +end_of_line = lf + +[*.yml] +indent_size = 2 + +[{Makefile,Makefile.*}] +indent_style = tab