-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
80 lines (68 loc) · 1.74 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
# 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
enable-extensions = G
# Plugins:
accept-encodings = utf-8
max-complexity = 6
max-line-length = 90
radon-max-cc = 10
radon-show-closures = True
radon-no-assert = True
max-module-members = 8
max-methods = 10
# Self settings:
max-imports = 15
# Excluding some directories:
exclude =
.git
__pycache__
.venv
.eggs
*.egg
# These folders contain code badly written for reasons:
./tests/fixtures/**
./tests/**/snapshots/**
# Exclude some pydoctest checks globally:
ignore = WPS412, WPS100, WPS436, WPS306, S101, I001, D107
[tool:pytest]
# py.test configuration: http://doc.pytest.org/en/latest/customize.html
addopts =
--strict
--doctest-modules
--cov=settings_loader
--cov-branch
--cov-report=term-missing:skip-covered
--cov-report=html
--cov-report=xml
--cov-fail-under=100
[isort]
# See https://github.com/timothycrosley/isort#multi-line-output-modes
multi_line_output = 3
include_trailing_comma = true
default_section = FIRSTPARTY
# Is the same as 80 in flake8:
line_length = 80
[mypy]
# The mypy configurations: http://bit.ly/2zEl9WI
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
strict_optional = True
no_implicit_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_no_return = True