From a15207e6cdc8bb72a7ef7418d4244cbadd72a714 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 6 Nov 2023 15:47:59 +0100 Subject: [PATCH] Introduce EditorConfig (#681) * Introduce EditorConfig * Fix EC * Reduce .editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..a151cca1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{*.pm,bin/*}] +indent_size = 3 + +[*.go] +indent_style = tab