Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,12 @@ unused-ignore-comment = "warn"
unused-type-ignore-comment = "warn"
# Allow empty function bodies during development
empty-body = "ignore"
# ty 0.0.43 (bumped from 0.0.32 in #1919) activated this rule under
# [tool.ty.rules] all = "error". Adopting @override across pyrit/ would require
# the typing_extensions backport on Python 3.10/3.11 (typing.override is 3.12+),
# which adds a direct dep and ongoing import-path friction. Suppressing the
# rule keeps the codebase consistent with the existing pragmatic ignores above.
missing-override-decorator = "ignore"

[tool.ty.analysis]
respect-type-ignore-comments = true
Expand Down
Loading