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