From 4076e878692c7e4b8d486c53579f1b0bf7b1d3b8 Mon Sep 17 00:00:00 2001 From: Marco Franssen Date: Wed, 20 May 2026 20:56:16 +0200 Subject: [PATCH] Add .editorconfig This prevents all kind of whitespacing differences accross many files which I already fixed here and there in the files I touched Signed-off-by: Marco Franssen --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..028ffdef6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +tab_width = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{Makefile,*.go,go.*}] +indent_style = tab +indent_size = 4 +tab_width = 4 + +[*.py] +indent_size = 4 +tab_width = 4