aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2024-08-16 19:03:48 +0100
committerGravatar Chris Lovering <[email protected]>2024-08-16 19:05:30 +0100
commit3dfabc121e00bec538ab2b7d6d1d258bd6b6b5a4 (patch)
treee173cbff10eaa6617533ca42676003e63a94a2c7 /pyproject.toml
parentAdd volume for thallium-backend (diff)
Add a database backend and migrations
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 454bd19..7381adf 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -54,13 +54,14 @@ ignore = [
]
[tool.ruff.lint.isort]
-known-first-party = ["tests", "src"]
+known-first-party = ["tests", "src", "migrations"]
order-by-type = false
case-sensitive = true
combine-as-imports = true
[tool.ruff.lint.per-file-ignores]
-"*/tests/**" = ["D103", "S101"]
+"thallium-backend/tests/**" = ["D103", "S101"]
+"thallium-backend/migrations/*" = ["N999"]
[tool.pytest.ini_options]
# addopts = "--ignore=examples"