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 660d4dd commit d8994d6Copy full SHA for d8994d6
1 file changed
pyproject.toml
@@ -207,11 +207,13 @@ select = [
207
"RUF022",
208
# unused-noqa
209
"RUF100",
210
+ # Checks for uses of the assert keyword.
211
+ "S101",
212
]
213
ignore = ["E501", "D1", "D415"]
214
215
[tool.ruff.lint.per-file-ignores]
-"tests/*" = ["ANN"]
216
+"tests/*" = ["ANN", "S101"]
217
218
[tool.ruff.lint.isort]
219
known-first-party = ["commitizen", "tests"]
0 commit comments