We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef9fde0 commit 309b7a5Copy full SHA for 309b7a5
1 file changed
pyproject.toml
@@ -179,6 +179,12 @@ unused-ignore-comment = "warn"
179
unused-type-ignore-comment = "warn"
180
# Allow empty function bodies during development
181
empty-body = "ignore"
182
+# ty 0.0.43 (bumped from 0.0.32 in #1919) activated this rule under
183
+# [tool.ty.rules] all = "error". Adopting @override across pyrit/ would require
184
+# the typing_extensions backport on Python 3.10/3.11 (typing.override is 3.12+),
185
+# which adds a direct dep and ongoing import-path friction. Suppressing the
186
+# rule keeps the codebase consistent with the existing pragmatic ignores above.
187
+missing-override-decorator = "ignore"
188
189
[tool.ty.analysis]
190
respect-type-ignore-comments = true
0 commit comments