-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
42 lines (29 loc) · 792 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
[flake8]
ignore = E501, W503, E203, E402, E712, B008
max-line-length = 88
exclude = .git
[mypy]
plugins = pydantic.mypy
exclude = ['venv', '.venv']
strict = True
disallow_untyped_decorators = False
disallow_subclassing_any = False
[mypy-redis.*]
ignore_missing_imports = True
[mypy-pycartnext.*]
ignore_missing_imports = True
[pylint.MASTER]
init-hook='import sys; sys.path.append("src")'
[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
[tool:pytest]
asyncio_mode = auto
asyncio_default_fixture_loop_scope = session
filterwarnings =
ignore::Warning