forked from wemake-services/flake8-broken-line
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (63 loc) · 1.8 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
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[flake8]
max-complexity = 6
statistics = false
show-source = true
max-line-length = 80
doctests = true
# Excluding some directories:
exclude =
.git
__pycache__
.venv
.eggs
*.egg
# These folders contain code badly written for reasons:
./tests/fixtures/**
# Exclude some pydoctest checks globally:
ignore = D100, D104, D401
[tool:pytest]
# py.test options:
norecursedirs = tests/fixtures *.egg .eggs dist build docs .tox .git __pycache__
# Strict `@xfail` by default:
xfail_strict = true
# You will need to measure your tests speed with `-n auto` and without it,
# so you can see whether it gives you any performance gain, or just gives
# you an overhead. See `docs/template/development-process.rst`.
addopts =
--strict-markers
--strict-config
--doctest-modules
--cov=flake8_broken_line
--cov-branch
--cov-report=term:skip-covered
--cov-report=html
--cov-report=xml
--cov-fail-under=100
[isort]
# See https://github.com/timothycrosley/isort#multi-line-output-modes
profile = wemake
[mypy]
# The mypy configurations: http://bit.ly/2zEl9WI
enable_error_code = truthy-bool, redundant-expr, unused-awaitable
allow_redefinition = false
check_untyped_defs = true
disallow_untyped_decorators = true
disallow_any_explicit = true
disallow_any_generics = true
disallow_untyped_calls = true
ignore_errors = false
ignore_missing_imports = true
implicit_reexport = false
local_partial_types = true
strict_optional = true
strict_equality = true
no_implicit_optional = true
# We use `type: ignore` to get `importlib.metadata` version.
warn_unused_ignores = false
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
warn_no_return = true