blob: 2fc42ad3810848d38d00dcf875166f656cb607f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py
ignore =
# "Too complex"? Sure, for people that eat Hawaii pizza...
C901,
# 'something' imported but unused
F401,
# 'from module import *' used: unable to detect undefined names
F403,
# name may be undefined, or defined from star imports: module
F405,
# line break before binary operator
W503
max-complexity = 18
max-line-length = 100
|