From 3701b8685ac9ccc7fd3d237be2c246b6cd3305df Mon Sep 17 00:00:00 2001 From: Owen Rudge Date: Thu, 12 Apr 2018 21:14:23 +0100 Subject: [PATCH] Add: Include basic .editorconfig file to help enforce tab style (#6707) --- .editorconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..787a1c76c1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{c,cpp,h,hpp}] +indent_style = tab +charset = utf-8