-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
48 lines (41 loc) · 1.24 KB
/
setup.cfg
File metadata and controls
48 lines (41 loc) · 1.24 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
[flake8]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv
[pycodestyle]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv
[mypy]
python_version = 3.8
check_untyped_defs = True
ignore_missing_imports = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
[mypy.plugins.django-stubs]
django_settings_module = config.settings.test
[mypy-*.migrations.*]
# Django migrations should not produce any errors:
ignore_errors = True
[coverage:run]
include = services/*
omit = *migrations*, *tests*
plugins =
django_coverage_plugin
[isort]
line_length = 88
multi_line_output = 3
force_grid_wrap = 0
use_parentheses = True
include_trailing_comma = True
lines_after_imports = 2
known_third_party = django,drf-yasg,uuid,collections,environ,rest_framework,allauth,django_rest_passwordreset
[semantic_release]
version_variable = bellboy/__init__.py:__version__
commit_author = "actions-user <actions@github.com>"
hvcs = github
# The build should not be made or uploaded anywhere:
build_command = echo 'Semantic release build step running.'
upload_to_pypi = False
upload_to_release = False
# Change f*&%!*& branch to 'main' if needed.
branch = master