Spaces:
Sleeping
Sleeping
File size: 567 Bytes
2e658e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [tool.ruff]
# Live HF Spaces deployment without a test suite — gate stays on
# correctness/safety, not cosmetic churn that would bury debugging diffs.
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["E722", "F", "B", "S602", "S603", "S110"]
ignore = ["F401"]
[tool.black]
line-length = 120
target-version = ["py313"]
[tool.mypy]
python_version = "3.13"
check_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
ignore_missing_imports = true
show_error_codes = true
|