mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-18 19:30:25 +00:00
ruff: fix pyprojects using select instead of extend-select by mistake
This commit is contained in:
@@ -65,6 +65,6 @@ commands = pytest --cov --cov-report=term tests
|
||||
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
lint.select = [
|
||||
lint.extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
@@ -46,6 +46,6 @@ py-modules = ["bsdd","bsdd_json","type_hints"]
|
||||
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
lint.select = [
|
||||
lint.extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
@@ -31,6 +31,6 @@ exclude = ["test*"]
|
||||
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
lint.select = [
|
||||
lint.extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
@@ -43,6 +43,6 @@ exclude = ["test*"]
|
||||
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
lint.select = [
|
||||
lint.extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
@@ -29,6 +29,6 @@ py-modules = ["ifccsv"]
|
||||
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
lint.select = [
|
||||
lint.extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
@@ -48,6 +48,6 @@ include = ["ifcopenshell*"]
|
||||
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
lint.select = [
|
||||
lint.extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
@@ -36,6 +36,6 @@ exclude = ["test*"]
|
||||
extend = "../../pyproject.toml"
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = [
|
||||
extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
lint.select = [
|
||||
lint.extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
@@ -45,6 +45,6 @@ exclude = ["test*"]
|
||||
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
lint.select = [
|
||||
lint.extend-select = [
|
||||
"F401", # unused imports
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user