From c4858e6e0d3f16a889f3cccb1a177706698adad6 Mon Sep 17 00:00:00 2001 From: "Blake J. Harnden" Date: Fri, 21 Apr 2017 14:16:48 -0700 Subject: [PATCH] added editorconfig file to help standardize development across IDEs --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..67ce9503 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# This file is for unifying the coding style for different editors and IDEs +# editorconfig.org +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.py] +indent_style = space +indent_size = 4