From e3e84d95da8a2e5af7d0076c2a945369ee0a87fe Mon Sep 17 00:00:00 2001 From: Jay Thomas Date: Mon, 30 Oct 2017 01:11:55 -0400 Subject: [PATCH] Add editorconfig (#891) --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7871389 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# Top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true + +[*.rb] +charset = utf-8