-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.cfg
65 lines (60 loc) · 935 Bytes
/
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
[flake8]
ignore=
# TODO: Go over these and fix the ones we want to
B007,
B011,
D100,
D101,
D102,
D103,
D104,
D105,
D107,
D200,
D202,
D205,
D400,
D401,
D402,
D403,
D412,
E501,
M105,
M114,
M210,
M300,
M401,
M908,
N801,
N804,
N805,
N806,
N818,
S101,
S201,
S301,
W503,
SFS,
SIM,
[tool:pytest]
testpaths=tests
[mypy]
warn_unused_configs = True
ignore_missing_imports = False
disallow_untyped_defs = True
disallow_incomplete_defs = True
no_implicit_optional = True
strict_equality = True
warn_unreachable = True
warn_unused_ignores = True
show_error_context = True
pretty = True
check_untyped_defs = True
python_version = 3.8
files = tasktiger
[mypy-flask_script.*]
ignore_missing_imports = True
[mypy-rollbar.*]
ignore_missing_imports = True
[mypy-structlog.*]
ignore_missing_imports = True