From 3fc414893a704e9d65ec0bde657175913faba059 Mon Sep 17 00:00:00 2001 From: Matt Molyneaux Date: Sat, 24 Nov 2018 23:49:36 +0000 Subject: [PATCH] EditorConfig config --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..49df4e5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# 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 + +# Markdown +[*.md] +indent_size = 2 + +# Python +[*.py] +indent_style = tab