forked from seanfisk/python-project-template
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
Latest commit
25 lines (19 loc) · 433 Bytes
/
Copy path.editorconfig
File metadata and controls
25 lines (19 loc) · 433 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- mode: conf-unix; -*-
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
# defaults
[*]
insert_final_newline = true
# 4 space indentation
[*.{ini,py,py.tpl,rst}]
indent_style = space
indent_size = 4
# 4-width tabbed indentation
[*.{sh,bat.tpl,Makefile.tpl}]
indent_style = tab
indent_size = 4
# and travis does its own thing
[.travis.yml]
indent_style = space
indent_size = 2