From 3448ce4a002a445457f1d56e95eca5b04e365ebc Mon Sep 17 00:00:00 2001 From: Mike Haas Date: Sun, 2 Mar 2014 15:13:25 -0600 Subject: [PATCH] Add editorconfig file to help enforce a coding style. --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..9203ffd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# editorconfig.org + +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true \ No newline at end of file