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]
|
[tool.coverage.run]
|
||||||
source = ["authentik"]
|
source = ["authentik"]
|
||||||
relative_files = true
|
relative_files = true
|
||||||
omit = [
|
omit = ["*/asgi.py", "manage.py", "*/migrations/*", "*/apps.py", "website/"]
|
||||||
"*/asgi.py",
|
|
||||||
"manage.py",
|
|
||||||
"*/migrations/*",
|
|
||||||
"*/apps.py",
|
|
||||||
"website/",
|
|
||||||
]
|
|
||||||
|
|
||||||
[tool.coverage.report]
|
[tool.coverage.report]
|
||||||
sort = "Cover"
|
sort = "Cover"
|
||||||
|
@ -60,7 +54,8 @@ disable =[
|
||||||
"protected-access",
|
"protected-access",
|
||||||
"raise-missing-from",
|
"raise-missing-from",
|
||||||
# To preverse django's translation function we need to use %-formatting
|
# 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"]
|
load-plugins = ["pylint_django", "pylint.extensions.bad_builtin"]
|
||||||
django-settings-module = "authentik.root.settings"
|
django-settings-module = "authentik.root.settings"
|
||||||
|
|
Reference in New Issue