File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Since there is overlap in the violations that the different tools check for, it makes sense to quiesce some warnings
2
2
# in some tools if those warnings in other tools are preferred. This avoids the need to add duplicate lint warnings.
3
3
4
+ # max-line-length should be removed ASAP!
5
+
4
6
[pycodestyle]
5
7
max-line-length = 119
6
8
7
9
[flake8]
8
10
max-line-length = 119
9
- ignore = E722,F841
11
+ ignore = E722,F841,W503
10
12
# E722: pylint is preferred for bare-except
11
13
# F841: pylint is preferred for unused-variable
14
+ # W503: deprecated: https://bugs.python.org/issue26763 - https://www.python.org/dev/peps/pep-0008/#should-a-line-break-before-or-after-a-binary-operator
12
15
13
16
# pylint honours the [MESSAGES CONTROL] section
14
17
# as well as [MASTER] section
You can’t perform that action at this time.
0 commit comments