root: format pyproject
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
da7635ae5c
commit
5182a6741e
|
@ -15,13 +15,7 @@ force_to_top = "*"
|
|||
[tool.coverage.run]
|
||||
source = ["authentik"]
|
||||
relative_files = true
|
||||
omit = [
|
||||
"*/asgi.py",
|
||||
"manage.py",
|
||||
"*/migrations/*",
|
||||
"*/apps.py",
|
||||
"website/",
|
||||
]
|
||||
omit = ["*/asgi.py", "manage.py", "*/migrations/*", "*/apps.py", "website/"]
|
||||
|
||||
[tool.coverage.report]
|
||||
sort = "Cover"
|
||||
|
@ -45,7 +39,7 @@ exclude_lines = [
|
|||
show_missing = true
|
||||
|
||||
[tool.pylint.master]
|
||||
disable =[
|
||||
disable = [
|
||||
"arguments-differ",
|
||||
"no-self-use",
|
||||
"fixme",
|
||||
|
@ -60,20 +54,21 @@ disable =[
|
|||
"protected-access",
|
||||
"raise-missing-from",
|
||||
# To preverse django's translation function we need to use %-formatting
|
||||
"consider-using-f-string",]
|
||||
"consider-using-f-string",
|
||||
]
|
||||
|
||||
load-plugins=["pylint_django","pylint.extensions.bad_builtin"]
|
||||
django-settings-module="authentik.root.settings"
|
||||
extension-pkg-whitelist=["lxml","xmlsec"]
|
||||
load-plugins = ["pylint_django", "pylint.extensions.bad_builtin"]
|
||||
django-settings-module = "authentik.root.settings"
|
||||
extension-pkg-whitelist = ["lxml", "xmlsec"]
|
||||
|
||||
# Allow constants to be shorter than normal (and lowercase, for settings.py)
|
||||
const-rgx="[a-zA-Z0-9_]{1,40}$"
|
||||
const-rgx = "[a-zA-Z0-9_]{1,40}$"
|
||||
|
||||
ignored-modules=["django-otp","binascii", "socket", "zlib"]
|
||||
generated-members=["xmlsec.constants.*","xmlsec.tree.*","xmlsec.template.*"]
|
||||
ignore="migrations"
|
||||
max-attributes=12
|
||||
max-branches=20
|
||||
ignored-modules = ["django-otp", "binascii", "socket", "zlib"]
|
||||
generated-members = ["xmlsec.constants.*", "xmlsec.tree.*", "xmlsec.template.*"]
|
||||
ignore = "migrations"
|
||||
max-attributes = 12
|
||||
max-branches = 20
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
DJANGO_SETTINGS_MODULE = "authentik.root.settings"
|
||||
|
|
Reference in New Issue