From 100fad741fe79a2a0ea8364d6b70f57f6d0c17a7 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 13 Sep 2017 18:38:27 +0200 Subject: [PATCH] Add .editorconfig (see editorconfig.org) (#2943) This file uses the same settings which we currently have in our vim modeline, but can be picked up by many different editors without having to add and maintain editor-specific modelines in all of our source files. --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..c25745f82 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +[*.{c,h}] +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true