forked from p34709852/monkey
ci: add C901 to flake8's `extend-ignore` list
Issue #1076 has been created to track the task of resolving C901 errors and removing C901 from the ignore list.
This commit is contained in:
parent
c1929c2bd3
commit
07afa27ec1
2
.flake8
2
.flake8
|
@ -7,7 +7,7 @@ max-complexity = 10
|
|||
max-line-length = 100
|
||||
|
||||
### ignore "whitespace before ':'" and "line break before binary operator" for compatibility with black
|
||||
extend-ignore = E203, W503
|
||||
extend-ignore = E203, W503, C901
|
||||
|
||||
### --statistics Count the number of occurrences of each error/warning code and print a report.
|
||||
statistics = True
|
||||
|
|
Loading…
Reference in New Issue