From 7a53a0faae5cd39708de30d25945a458a727d666 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Wed, 21 Sep 2022 11:36:31 +0200 Subject: [PATCH] Add EditorConfig http://EditorConfig.org --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..e6a5fbc82 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# http://EditorConfig.org +root = true + +[**] +indent_style = space +indent_size = 2 +tab_width = 8 +end_of_line = lf +charset = utf-8 + +[{build,build-*,init_buildsystem}] +indent_style = tab +indent_size = 4 + +[Makefile] +indent_style = tab +indent_size = 8