forked from AIDASoft/podio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
38 lines (33 loc) · 890 Bytes
/
setup.cfg
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
26
27
28
29
30
31
32
33
34
35
36
37
[pycodestyle]
max-line-length = 120
ignore =
# indent is not a multiple of four
E111,
# indent is not a multiple of four
E114,
#continuation line with same indent as next logical line
E125,
# module level import not at the top
E402,
hang_closing=true
[pep8]
indent_size=2
[flake8]
exclude = .git,__pycache__,old,build,dist
ignore =
# indentation is not a multiple of 4
E111,
# indentation is not a multiple of 4 (comment)
E114,
# closing bracket does not match visual indentation
E124,
# continuation line with same indent as next logical line
E125,
# continuation line over-indented for visual indent
E127,
# line break before binary operator
W503,
# module level import not at the top
E402,
max-line-length=120
hang_closing=true