Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
move ruff config options
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrudd2 committed Feb 5, 2024
1 parent 218f0f8 commit b4cfc39
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
exclude = ["venv*"]
line-length = 99
ignore = [
lint.ignore = [
"PLR2004",
"D104",
"D107",
"C901",
"UP036",
]
exclude = ["venv*"]
select = [
lint.select = [
"C", # complexity
"D", # docstrings
"E", # pycodestyle errors
Expand All @@ -22,7 +22,5 @@ select = [
# "ARG", # flake8-unused args
# "B" # bandit
]
[pydocstyle]
[lint.pydocstyle]
convention = "pep257"
[flake8-unused-arguments]
ignore-variadic-names = true

0 comments on commit b4cfc39

Please sign in to comment.