From 430b5606d825e704e0b73106e82348f44401994d Mon Sep 17 00:00:00 2001 From: Matt Molyneaux Date: Sun, 6 Mar 2016 15:07:21 +0000 Subject: [PATCH] EditorConfig [skip ci] --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1129a31 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +# Python and Markdown +[*.py, *.md] + +# reStructuredText +[*.rst]