We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a24b927 commit c214b4bCopy full SHA for c214b4b
pyproject.toml
@@ -73,7 +73,7 @@ packages = ["crossplane"]
73
[tool.ruff]
74
target-version = "py311"
75
exclude = ["crossplane/function/proto/*"]
76
-select = [
+lint.select = [
77
"A",
78
"ARG",
79
"ASYNC",
@@ -103,12 +103,12 @@ select = [
103
"W",
104
"YTT",
105
]
106
-ignore = ["ISC001"] # Ruff warns this is incompatible with ruff format.
+lint.ignore = ["ISC001"] # Ruff warns this is incompatible with ruff format.
107
108
[tool.ruff.lint.per-file-ignores]
109
"tests/*" = ["D"] # Don't require docstrings for tests.
110
111
-[tool.ruff.isort]
+[tool.ruff.lint.isort]
112
known-first-party = ["crossplane"]
113
114
[tool.ruff.lint.pydocstyle]
0 commit comments