From 6d08479626663e45c5d5354924dec6aaa8055667 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Thu, 20 Nov 2014 15:22:49 -0500 Subject: [PATCH] Add editorconfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..743d508 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +trim_trailing_whitespace = true + +[*.md] +indent_size = 4 + +[*.py] +indent_size = 2