split plugin dirs, created new cleaner import path for plugin config in settings.py

This commit is contained in:
Nick Sweeting
2024-09-24 01:25:55 -07:00
parent 1a58967e8c
commit a9a97c013d
39 changed files with 469 additions and 199 deletions

View File

@@ -136,6 +136,7 @@ test = [
"bottle>=0.13.1",
]
lint = [
"ruff>=0.6.6",
"flake8>=7.1.1",
"mypy>=1.11.2",
"django-autotyping>=0.5.1",
@@ -158,7 +159,7 @@ exclude = ["*.pyi", "typings/", "migrations/", "vendor/"]
# https://docs.astral.sh/ruff/rules/
[tool.ruff.lint]
ignore = ["E731", "E303", "E266"]
ignore = ["E731", "E303", "E266", "E241", "E222"]
[tool.pytest.ini_options]
testpaths = [ "tests" ]