summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-12-02 14:55:10 -0500
committerBen Sima <ben@bensima.com>2025-12-02 14:55:10 -0500
commit8329b760082e07364a6f6c3e8e0b240802838316 (patch)
tree96374d56651900a3c78dddbdc9234569a042b738 /pyproject.toml
parent32f1f3e863a4844ad29285425749405d91f34662 (diff)
Ignore PLC0415 in ruff (late imports for circular deps)
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index aa09ac8..8cd59ba 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -48,6 +48,7 @@ ignore = [
"ISC001", # implicit-string-concatenation, conflicts with ruff format
"E501", # line-too-long
"RUF100", # unused-noqa
+ "PLC0415", # import-outside-top-level, needed for circular dep avoidance in tests
]
[tool.ruff.lint.isort]