-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
83 lines (70 loc) · 2.17 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
73
74
75
76
77
78
79
80
81
82
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[flake8]
format = default
show-source = True
statistics = False
doctests = True
enable-extensions = G
docstring-style = numpy
strictness = long
# Flake plugins:
max-line-length = 120
max-complexity = 6
# Excluding some directories:
exclude = .git,__pycache__,.venv,.eggs,*.egg, migrations, apps.py, snapshots, local.py, alembic
ignore = D100, D104, D106, WPS306, WPS431, N805, WPS110, WPS305, WPS412, WPS410, WPS125, WPS432, B008, WPS404, B010
# Disable some pydocstyle checks:
allowed-domain-names = info
per-file-ignores =
app/core/config.py: WPS115, WPS432, WPS221, WPS111, WPS237
__init__.py: F401
app/graphql/schema.py: WPS301
tests/*.py: S101, WPS111
app/crud/*.py: D102
# Docs: https://github.com/snoack/flake8-per-file-ignores
# You can completely or partially disable our custom checks,
# to do so you have to ignore `WPS` letters for all python files:
# per-file-ignores =
# Allow `__init__.py` with logic for configuration:
[isort]
# isort configuration:
# https://github.com/timothycrosley/isort/wiki/isort-Settings
include_trailing_comma = true
use_parentheses = true
# See https://github.com/timothycrosley/isort#multi-line-output-modes
multi_line_output = 3
default_section = FIRSTPARTY
line_length = 80
[darglint]
# darglint configuration:
# https://github.com/terrencepreilly/darglint
strictness = long
[mypy]
# Mypy configuration:
# https://mypy.readthedocs.io/en/latest/config_file.html
exclude = alembic
allow_redefinition = False
check_untyped_defs = True
disallow_untyped_decorators = True
disallow_any_explicit = False
disallow_any_generics = False
disallow_untyped_calls = True
ignore_errors = True
ignore_missing_imports = True
implicit_reexport = True
local_partial_types = True
strict_equality = True
strict_optional = False
no_implicit_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unreachable = True
warn_no_return = True
plugins = sqlmypy, pydantic.mypy, strawberry.ext.mypy_plugin
[doc8]
ignore-path = docs/_build
max-line-length = 80
sphinx = True