chore: ban relative imports on all packages (#34691)

This commit is contained in:
Mason Daugherty
2026-01-09 17:02:24 -05:00
committed by GitHub
parent 8e824d9ec4
commit 18c25e9f10
33 changed files with 197 additions and 62 deletions

View File

@@ -105,6 +105,9 @@ asyncio_mode = "auto"
convention = "google"
ignore-var-parameters = true # ignore missing documentation for *args and **kwargs parameters
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D"]