update pyproject

This commit is contained in:
Richard Kuo (Onyx)
2025-06-04 10:28:14 -07:00
parent 208e7e0aac
commit f8679c9686

View File

@@ -5,6 +5,9 @@ explicit_package_bases = true
disallow_untyped_defs = true
enable_error_code = ["possibly-undefined"]
strict_equality = true
exclude = [
"^generated/",
]
[[tool.mypy.overrides]]
module = "alembic.versions.*"
@@ -14,6 +17,10 @@ disable_error_code = ["var-annotated"]
module = "alembic_tenants.versions.*"
disable_error_code = ["var-annotated"]
[[tool.mypy.overrides]]
module = "generated.*"
follow_imports = "silent"
[tool.ruff]
ignore = []
line-length = 130