-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8
42 lines (41 loc) · 972 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
38
39
40
41
42
[flake8]
count=True
statistics=True
show-source=True
max-line-length=120
import-order-style=pycharm
application-import-names=src
exclude=
.venv,
docs,
benchmarks,
venv,
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,
# B008 perform function calls in argument defaults.
B008
# D106 Missing docstring in public nested class
D106
max-cognitive-complexity=10
max-complexity=10
per-file-ignores=
tests/**:D1,E800,A003
**/__init__.py:F401