From 91c5630f94f6198e94487eac0277b858d5ed9ef2 Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Mon, 8 Feb 2016 11:22:22 +0100 Subject: [PATCH] Add .editorconfig file --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..e70572d9bc --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# http://editorconfig.org +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.{c,cpp,h,hpp,yml,cmake}] +trim_trailing_whitespace = true +charset = utf-8 +indent_style = space +indent_size = 2 + +[Makefile] +indent_style = tab -- 2.20.1