ruff: use readable rule names in selectors

This commit is contained in:
Andrej730
2026-08-10 16:09:49 +05:00
parent daa7d98b3f
commit b6dccce12a
12 changed files with 23 additions and 21 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ exclude = ["test*"]
[tool.ruff]
extend = "../../pyproject.toml"
lint.extend-select = [
"F401", # unused imports
"unused-import", # unused imports
]
[tool.ruff.lint.isort]
+1 -1
View File
@@ -1,5 +1,5 @@
[tool.ruff]
extend = "../pyproject.toml"
lint.ignore = [
"F401", # unused imports
"unused-import", # unused imports
]