root: format pyproject
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
		| @ -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" | ||||||
| @ -45,7 +39,7 @@ exclude_lines = [ | |||||||
| show_missing = true | show_missing = true | ||||||
|  |  | ||||||
| [tool.pylint.master] | [tool.pylint.master] | ||||||
| disable =[ | disable = [ | ||||||
|   "arguments-differ", |   "arguments-differ", | ||||||
|   "no-self-use", |   "no-self-use", | ||||||
|   "fixme", |   "fixme", | ||||||
| @ -60,20 +54,21 @@ 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" | ||||||
| extension-pkg-whitelist=["lxml","xmlsec"] | extension-pkg-whitelist = ["lxml", "xmlsec"] | ||||||
|  |  | ||||||
| # Allow constants to be shorter than normal (and lowercase, for settings.py) | # 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"] | ignored-modules = ["django-otp", "binascii", "socket", "zlib"] | ||||||
| generated-members=["xmlsec.constants.*","xmlsec.tree.*","xmlsec.template.*"] | generated-members = ["xmlsec.constants.*", "xmlsec.tree.*", "xmlsec.template.*"] | ||||||
| ignore="migrations" | ignore = "migrations" | ||||||
| max-attributes=12 | max-attributes = 12 | ||||||
| max-branches=20 | max-branches = 20 | ||||||
|  |  | ||||||
| [tool.pytest.ini_options] | [tool.pytest.ini_options] | ||||||
| DJANGO_SETTINGS_MODULE = "authentik.root.settings" | DJANGO_SETTINGS_MODULE = "authentik.root.settings" | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user
	 Jens Langhammer
					Jens Langhammer