aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2023-09-04 21:21:37 +0100
committerGravatar Joe Banks <[email protected]>2023-09-04 21:21:37 +0100
commitc6829ab8134adceb2ed0bdaf71f1abfeef63286c (patch)
tree04848901819ede9c851bd07fea46bd709d91f7af /pyproject.toml
parentUse `thread.created_at` to determine thread creation (diff)
Subject Alembic files to the wrath of the linter
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 6b68be7..371255b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -32,7 +32,7 @@ build-backend = "poetry.masonry.api"
[tool.ruff]
target-version = "py311"
-extend-exclude = [".cache", "alembic"]
+extend-exclude = [".cache"]
ignore = [
"ANN002",
"ANN003",
@@ -56,3 +56,4 @@ select = ["ALL"]
[tool.ruff.per-file-ignores]
"metricity/models.py" = ["A003"]
+"alembic/*" = ["INP001"]