-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
53 lines (39 loc) · 855 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
[isort]
profile = black
known_first_party = app
[flake8]
max-complexity = 7
statistics = True
max-line-length = 88
ignore = W503,E203
per-file-ignores =
__init__.py: F401
[mypy]
plugins = pydantic.mypy, sqlalchemy.ext.mypy.plugin
ignore_missing_imports = True
follow_imports = skip
warn_unused_configs = True
strict_optional = True
[tool:pytest]
markers =
fastapi
[mypy-alembic.*]
ignore_missing_imports = True
[mypy-broadcaster.*]
ignore_missing_imports = True
[mypy-bson.*]
ignore_missing_imports = True
[mypy-cv2.*]
ignore_missing_imports = True
[mypy-joblib.*]
ignore_missing_imports = True
[mypy-motor.*]
ignore_missing_imports = True
[mypy-passlib.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-pytest_unordered.*]
ignore_missing_imports = True
[mypy-sklearn.*]
ignore_missing_imports = True