forked from joeblackwaslike/quart-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
72 lines (64 loc) · 1.1 KB
/
setup.cfg
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Config goes in pyproject.toml unless a tool doesn't support that.
[flake8]
# B = bugbear
# E = pycodestyle errors
# F = flake8 pyflakes
# W = pycodestyle warnings
# B9 = bugbear opinions
# ISC = implicit-str-concat
show-source = true
max-line-length = 100
min-name-length = 2
max-name-length = 20
max-methods = 12
nested-classes-whitelist =
Meta
Params
Config
Defaults
ignore =
# allow f strings
WPS305
WPS430
WPS463
allowed-domain-names =
value
val
vals
values
result
results
exclude =
.git
.github
.mypy_cache
.pytest_cache
__pycache__
__pypackages__
venv
.venv
artwork
build
dist
docs
examples
old
extend-select =
# bugbear
B
# bugbear opinions
B9
# implicit str concat
ISC
extend-ignore =
# slice notation whitespace, invalid
E203
# line length, handled by bugbear B950
E501
# bare except, handled by bugbear B001
E722
# zip with strict=, requires python >= 3.10
B905
# string formatting opinion, B028 renamed to B907
B028
B907