From efd9a67a79553453741b78020626fd40dc06fb7c Mon Sep 17 00:00:00 2001 From: Buck Golemon Date: Fri, 6 Feb 2015 13:13:20 -0800 Subject: [PATCH] editorconfig helps me match your style, and avoid repeated python whitespace errors --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..5dc6d24 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# 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_size = 4 +indent_style = tab