From b73b7da378220db73a02bec5fe8b8d53e619be8a Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Sat, 22 Oct 2016 13:27:57 -0400 Subject: [PATCH] Add .editorconfig --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3ef7a02 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +trim_trailing_whitespace = true +insert_final_newline = true + +[Makefile] +indent_style = tab + +[*.{py,pyx,pxd,pxi,yml,h}] +indent_size = 4 +indent_style = space