mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-17 13:22:42 +01:00
24 lines
468 B
TOML
24 lines
468 B
TOML
[tool.mypy]
|
|
plugins = "sqlalchemy.ext.mypy.plugin"
|
|
mypy_path = "$MYPY_CONFIG_FILE_DIR"
|
|
explicit_package_bases = true
|
|
disallow_untyped_defs = true
|
|
enable_error_code = ["possibly-undefined"]
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "alembic.versions.*"
|
|
disable_error_code = ["var-annotated"]
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "alembic_tenants.versions.*"
|
|
disable_error_code = ["var-annotated"]
|
|
|
|
[tool.ruff]
|
|
ignore = []
|
|
line-length = 130
|
|
select = [
|
|
"E",
|
|
"F",
|
|
"W",
|
|
]
|