From 60a824e46f680d0c66739c2ce687eef77b624c10 Mon Sep 17 00:00:00 2001 From: bastimeyer Date: Sun, 5 Dec 2021 18:56:05 +0100 Subject: [PATCH] tools: add .editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..79cf395 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# http://editorconfig.org + +# top-most EditorConfig file +root = true + + +# global file encoding +[*] +charset = utf-8 +end_of_line = lf + +[**.sh] +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true