forked from p34709852/monkey
18 lines
453 B
Plaintext
18 lines
453 B
Plaintext
|
[flake8]
|
||
|
## Warn about linter issues.
|
||
|
|
||
|
exclude = ../monkey/monkey_island/cc/ui
|
||
|
show-source = True
|
||
|
max-complexity = 10
|
||
|
max-line-length = 100
|
||
|
|
||
|
### ignore "whitespace before ':'" and "line break before binary operator" for compatibility with black
|
||
|
extend-ignore = E203, W503
|
||
|
|
||
|
### --statistics Count the number of occurrences of each error/warning code and print a report.
|
||
|
statistics = True
|
||
|
|
||
|
### --count will print the total number of errors.
|
||
|
count = True
|
||
|
|