Enable checks for unused noqa

This commit is contained in:
Kovid Goyal
2023-01-09 17:28:35 +05:30
parent 69255f7525
commit 836b652f4d
7 changed files with 187 additions and 186 deletions

View File

@@ -19,7 +19,10 @@ no_implicit_reexport = true
[tool.ruff]
line-length = 160
target-version = 'py38'
select = ['E', 'F', 'I']
select = ['E', 'F', 'I', 'RUF100']
[tool.ruff.per-file-ignores]
"kitty/options/types.py" = ["E501"]
[tool.black]
line-length = 160