-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (41 loc) · 1.14 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
[flake8]
ignore = E501, W503, E203, E402, E712, B008
max-line-length = 88
exclude = .git,migrations
[mypy]
plugins = pydantic.mypy, sqlalchemy.ext.mypy.plugin
exclude = ['venv', '.venv', "migrations"]
strict = True
disallow_untyped_decorators = False
disallow_subclassing_any = False
[mypy-stackprinter.*]
ignore_missing_imports = True
[mypy-redis.*]
ignore_missing_imports = True
[mypy-requests.*]
ignore_missing_imports = True
[mypy-pytz.*]
ignore_missing_imports = True
[mypy-celery.*]
ignore_missing_imports = True
[mypy-kombu.*]
ignore_missing_imports = True
[mypy-dateutil.*]
ignore_missing_imports = True
[pylint.MASTER]
init-hook='import sys; sys.path.append("src")'
ignore=.git,migrations
ignore-paths=^migrations/.*$,
^src/scripts/.*$,
^src/tests/.*$'
[pylint.SIMILARITIES]
min-similarity-lines=4
ignore-comments=yes
ignore-docstrings=yes
ignore-imports=yes
[pylint]
disable = missing-docstring, empty-docstring, too-few-public-methods, c-extension-no-member, unsubscriptable-object, duplicate-code
ignored-modules=sqlalchemy,alembic
[tool:pytest]
asyncio_mode = auto
asyncio_default_fixture_loop_scope = session