-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
99 lines (78 loc) · 2.16 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[flake8]
# Base flake8 configuration:
# https://flake8.pycqa.org/en/latest/user/configuration.html
format = wemake
show-source = true
statistics = false
doctests = true
# darglint configuration:
# https://github.com/terrencepreilly/darglint
strictness = long
docstring-style = numpy
# Plugins:
max-complexity = 6
max-line-length = 80
# wemake-python-styleguide settings:
i-control-code = false
# Disable some pydocstyle checks:
# Exclude some pydoctest checks globally:
ignore = D100, D104, D106, D401, W504, X100, RST303, RST304, DAR103, DAR203
# Excluding some directories:
exclude =
.git
__pycache__
.venv
.eggs
*.egg
# Ignoring some errors in some files:
per-file-ignores =
# Enable `assert` keyword and magic numbers for tests:
tests/*.py: S101, WPS202, WPS204, WPS217, WPS226, WPS432, WPS442
[isort]
# isort configuration:
# https://github.com/timothycrosley/isort/wiki/isort-Settings
profile = wemake
[tool:pytest]
# Treat async tests as pytest-tests:
asyncio_mode = auto
# Directories that are not visited by pytest collector:
norecursedirs = *.egg .eggs dist build docs .tox .git __pycache__
# Strict `@xfail` by default:
xfail_strict = true
# Extra options:
addopts =
--strict-markers
--strict-config
--tb=short
--cov=asyncio_redis_rate_limit
--cov-report=term-missing:skip-covered
--cov-report=html
--cov-report=xml
--cov-branch
--cov-fail-under=100
[coverage:run]
# Coverage configuration: https://coverage.readthedocs.io/
# It is hard to cover this module.
# TODO: use https://github.com/wemake-services/coverage-conditional-plugin
omit =
asyncio_redis_rate_limit/compat.py
[mypy]
# mypy configurations: http://bit.ly/2zEl9WI
enable_error_code =
truthy-bool,
truthy-iterable,
redundant-expr,
unused-awaitable,
# ignore-without-code,
possibly-undefined,
redundant-self,
ignore_missing_imports = true
strict = true
warn_unreachable = true
[mypy-asyncio_redis_rate_limit.compat]
# Some ignores are bound to existing packages:
allow_any_explicit = true
warn_unused_ignores = false