SimpleChatbot / pyproject.toml
Amin
Deploy: HermesFace finalized project to HF Space
2e658e7
Raw
History Blame Contribute Delete
567 Bytes
[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