summaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorColin Kinloch <colin@kinlo.ch>2017-12-14 12:52:11 +0000
committerColin Kinloch <colin@kinlo.ch>2017-12-14 13:52:23 +0000
commitedb1df15eadb791ac9f44e0e15db9fe51cbcb1f5 (patch)
tree950ac334bd801e090c942e9bae052a44ba865c81 /.editorconfig
parentf3ad14224e27f2a25196575e3c43ebc792c90894 (diff)
Added indent_style to editorconfig, fixed inconsistent use of tabs and spaces in indentation.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index b7ef43c340..ead5e14ca9 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -8,6 +8,10 @@ indent_style = tab
[*.{cpp,hpp,c,h,mm}]
trim_trailing_whitespace = true
+[*.py]
+indent_style = space
+indent_size = 4
+
[.travis.yml]
indent_style = space
indent_size = 2