joinmarket/setup.cfg

19 lines
348 B
INI
Raw Permalink Normal View History

2018-08-20 12:45:08 +02:00
[flake8]
exclude =
# defaults
.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,
# lots of "unused imports"
2018-12-05 21:12:01 +01:00
__init__.py
jmqtui
2018-08-20 12:45:08 +02:00
max-line-length = 79
statistics = True
max-complexity = 15
# should be extended once existing issues are fixed
select = F,E9,W6
# those cause many errors, need to be fixed eventually
ignore = F403,F405,F841