Skip to content

Commit c214b4b

Browse files
committed
Fix lint configuration warnings
Signed-off-by: Bob Haddleton <[email protected]>
1 parent a24b927 commit c214b4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ packages = ["crossplane"]
7373
[tool.ruff]
7474
target-version = "py311"
7575
exclude = ["crossplane/function/proto/*"]
76-
select = [
76+
lint.select = [
7777
"A",
7878
"ARG",
7979
"ASYNC",
@@ -103,12 +103,12 @@ select = [
103103
"W",
104104
"YTT",
105105
]
106-
ignore = ["ISC001"] # Ruff warns this is incompatible with ruff format.
106+
lint.ignore = ["ISC001"] # Ruff warns this is incompatible with ruff format.
107107

108108
[tool.ruff.lint.per-file-ignores]
109109
"tests/*" = ["D"] # Don't require docstrings for tests.
110110

111-
[tool.ruff.isort]
111+
[tool.ruff.lint.isort]
112112
known-first-party = ["crossplane"]
113113

114114
[tool.ruff.lint.pydocstyle]

0 commit comments

Comments
 (0)