-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
63 lines (54 loc) · 1.09 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
[coverage:run]
branch = 1
omit =
*/management/*
*/migrations/*
*/test_*.py
source = src
[coverage:report]
exclude_lines =
pragma: no cover
raise NotImplementedError
return NotImplemented
[flake8]
exclude =
.*/,
__pycache__/,
node_modules/,
migrations/
ignore = H101,H238,H301,H306,W503,F401,E231,E501,F811,E722,E203
max-line-length = 88
[pep8]
exclude =
.*/,
__pycache__/,
node_modules/,
migrations/
ignore = H101,H238,H301,H306,W503,F401
max-line-length = 88
[pydocstyle]
ignore = D100, D101, D102, D103, D104, D105, D106, D107, D203, D213, D407, D202
inherit = false
match-dir = src
[isort]
skip =
.direnv
.tox
.venv
migrations
node_modules
example
demoproject
# Vertical Hanging Indent
multi_line_output = 3
include_trailing_comma = True
line_length = 88
known_first_party = wagtail_sb_admin_interface
known_third_party = colorfield,django,search,six,wagtail
profile = black
[mypy]
strict_optional = True
plugins =
mypy_django_plugin.main
[mypy.plugins.django-stubs]
django_settings_module = butterflypress.settings