aboutsummaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-04-26 00:39:42 +0200
committerSimon Warta <[email protected]>2017-04-26 00:39:42 +0200
commit344262dbd11df325736ff62ba8571c8ba27f3761 (patch)
tree17bc475b4c93f4c17570be8a846cbacc9372928d /.editorconfig
parent717888dc53f9198a4748b0190400c14991295bac (diff)
Add .editorconfig to help writing pylint complient .py files
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 000000000..d89f4d8b4
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,12 @@
+# See http://editorconfig.org/
+
+root = true
+
+[*]
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.py]
+indent_style = space
+indent_size = 4