This repository was archived by the owner on Jul 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
86 lines (70 loc) · 1.77 KB
/
setup.cfg
File metadata and controls
86 lines (70 loc) · 1.77 KB
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
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[isort]
# isort configuration:
# https://pycqa.github.io/isort/docs/configuration/options.html
line_length = 80
atomic = true
include_trailing_comma = true
use_parentheses = true
extend_skip_glob = */migrations/*
# See https://github.com/timothycrosley/isort#multi-line-output-modes
multi_line_output = 3
[pycln]
# pycln configuration:
# https://hadialqattan.github.io/pycln
expand-stars = true
extend_exclude = migrations
[tool:pytest]
# 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=autodonate
--cov-report=term
--cov-report=html
--cov-report=xml
--cov-branch
--testmon
[coverage:run]
omit =
# Ignore migrations in coverage report:
*/migrations/*
[mypy]
# mypy configurations: http://bit.ly/2zEl9WI
allow_redefinition = True
check_untyped_defs = 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
show_error_codes = True
no_implicit_optional = True
warn_no_return = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unreachable = True
warn_return_any = True
exclude = venv|migrations
[flake8]
select = D
docstring-convention = google
exclude = venv,migrations
[doc8]
# doc8 configuration: https://pypi.org/project/doc8/
ignore-path = docs/_build
ignore = D004,D003
max-line-length = 80
sphinx = True