Skip to content

Commit

Permalink
Fix lint configuration warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Haddleton <[email protected]>
  • Loading branch information
bobh66 committed Jun 25, 2024
1 parent a24b927 commit c214b4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ packages = ["crossplane"]
[tool.ruff]
target-version = "py311"
exclude = ["crossplane/function/proto/*"]
select = [
lint.select = [
"A",
"ARG",
"ASYNC",
Expand Down Expand Up @@ -103,12 +103,12 @@ select = [
"W",
"YTT",
]
ignore = ["ISC001"] # Ruff warns this is incompatible with ruff format.
lint.ignore = ["ISC001"] # Ruff warns this is incompatible with ruff format.

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

[tool.ruff.isort]
[tool.ruff.lint.isort]
known-first-party = ["crossplane"]

[tool.ruff.lint.pydocstyle]
Expand Down

0 comments on commit c214b4b

Please sign in to comment.