-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.flake8
37 lines (36 loc) · 851 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[flake8]
count=True
statistics=True
show-source=True
max-line-length=120
import-order-style=appnexus
application-import-names=dataclass_factory
exclude=
.venv,
docs,
benchmarks
docstring-convention=pep257
ignore=
# A002 argument "object" is shadowing a python builtin
A002,
# D100 Missing docstring in public module
D100,
# D101 Missing docstring in public class
D101,
# D102 Missing docstring in public method
D102,
# D103 Missing docstring in public function
D103,
# D104 Missing docstring in public package
D104,
# D105 Missing docstring in magic method
D105,
# D107 Missing docstring in __init__
D107,
# W504 line break after binary operator
W504,
max-cognitive-complexity=10
max-complexity=10
per-file-ignores=
tests/**:D1,E800,A003
**/__init__.py:F401