style(setup.cfg): add to repository
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Luca 2023-12-14 01:07:56 +01:00
parent 7a4a24cf05
commit 0f39ba2198
2 changed files with 41 additions and 0 deletions

1
.gitignore vendored
View File

@ -86,3 +86,4 @@ pretalx.cfg
.pytest_cache
*.cfg
!setup.cfg

40
setup.cfg Normal file
View File

@ -0,0 +1,40 @@
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
known_first_party=pretalx_musicrate
known_third_party=pretalx
skip=setup.py
combine_as_imports=True
default_section = THIRDPARTY
[tool:pytest]
DJANGO_SETTINGS_MODULE=pretalx.common.settings.test_settings
[check-manifest]
ignore =
Makefile
LICENSE
README.rst
.gitkeep
[flake8]
ignore = E203, E231, E266, E501, W503, W605
max-line-length = 160
exclude = migrations,static,_static,build,*settings.py,.tox/*,local
[coverage:run]
branch = True
source = pretalx_musicrate
omit = */migrations/*,*/urls.py,*/tests/*
[coverage:report]
exclude_lines =
pragma: no cover
def __str__
der __repr__
if settings.DEBUG
NOQA
NotImplementedError