From e55e5cc6b488527e908e24d9379bc258acbe30d7 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 4 Jul 2016 14:08:35 +0200 Subject: [PATCH] Create .editorconfig --- .editorconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..a1c73fe4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# For the full list of code style requirements, see CONTRIBUTING.md + +root = true + +[*] +charset = utf-8 +end_of_line = lf + +[*.{c,h,cmake,txt}] +indent_style = tab +indent_size = 4 + +[*.{xml,yml}] +indent_style = space +indent_size = 2 + +[config] +indent_style = space +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false