ruff: fix pyprojects using select instead of extend-select by mistake

This commit is contained in:
Andrej730
2026-08-10 15:34:05 +05:00
parent 69b0409aa0
commit 717d6aa2af
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -65,6 +65,6 @@ commands = pytest --cov --cov-report=term tests
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
lint.extend-select = [
"F401", # unused imports
]
+1 -1
View File
@@ -46,6 +46,6 @@ py-modules = ["bsdd","bsdd_json","type_hints"]
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
lint.extend-select = [
"F401", # unused imports
]
+1 -1
View File
@@ -31,6 +31,6 @@ exclude = ["test*"]
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
lint.extend-select = [
"F401", # unused imports
]
+1 -1
View File
@@ -43,6 +43,6 @@ exclude = ["test*"]
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
lint.extend-select = [
"F401", # unused imports
]
+1 -1
View File
@@ -29,6 +29,6 @@ py-modules = ["ifccsv"]
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
lint.extend-select = [
"F401", # unused imports
]
+1 -1
View File
@@ -48,6 +48,6 @@ include = ["ifcopenshell*"]
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
lint.extend-select = [
"F401", # unused imports
]
+1 -1
View File
@@ -36,6 +36,6 @@ exclude = ["test*"]
extend = "../../pyproject.toml"
[tool.ruff.lint]
select = [
extend-select = [
"F401", # unused imports
]
+1 -1
View File
@@ -1,5 +1,5 @@
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
lint.extend-select = [
"F401", # unused imports
]
+1 -1
View File
@@ -45,6 +45,6 @@ exclude = ["test*"]
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
lint.extend-select = [
"F401", # unused imports
]