forked from DIRACGrid/WebAppDIRAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
26 lines (22 loc) · 864 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
# This file should be used as the pep8/pycodestyle and autopep8 config
# pep8 binary will still look into this section
[pep8]
# Pep8 codes:
# E111 - indentation is not a multiple of four
# E114 indentation is not a multiple of four (comment)
ignore=E111,E114
# Make it format also comments, and method signatures
aggressive=2
# Understood by pep8 and autopep8
max_line_length=120
# indent_size is unknown to pep8, but not to autopep8
indent_size=2
[pycodestyle]
# Pep8 codes:
# E111 - indentation is not a multiple of four
# E114 - indentation is not a multiple of four (comment)
# E402 - module level import not at top of file (for scripts)
# W503 - line break before binary operator (stupid, complains after or before...)
# W504 - line break after binary operator (stupid, complains after or before...)
ignore=E111,E114,E402,W503,W504
max_line_length=120