From 8f3bf3cbe2568c7ec790d277baf7410060df7d15 Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Mon, 18 Sep 2017 14:46:35 -0700 Subject: [PATCH] Add .editorconfig ...For those of us with editors which aren't configured for 2-space on C. --- .editorconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..7d11f26b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +# editorconfig.org +root = true + +[*.{c,h}] +charset = utf-8 +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true