From a9e2c1473288a5fa861ada97340a58aa9cd656ec Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Sun, 19 Jun 2022 16:14:59 +0200 Subject: [PATCH] add .editorconfig [skip ci] Signed-off-by: Julien Veyssier --- .editorconfig | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..51117a6e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,25 @@ +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true + +[*.feature] +indent_size = 2 +indent_style = space + +[*.yml] +indent_size = 2 +indent_style = space + +[*.md] +trim_trailing_whitespace = false + +[*.svg] +insert_final_newline = false