Skip to content

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 1b784b1 commit 27b6c65
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
exclude = ["venv*"]
line-length = 120
ignore = [
target-version = "py38"
lint.ignore = [
"PLR2004",
"D104",
"D107",
"C901",
]
exclude = ["venv*"]
select = [
lint.select = [
"C", # complexity
"D", # docstrings
"E", # pycodestyle errors
Expand All @@ -21,6 +22,5 @@ select = [
# "ARG", # flake8-unused args
"B" # bandit
]
target-version = "py38"
[pydocstyle]
[lint.pydocstyle]
convention = "pep257"

0 comments on commit 27b6c65

Please sign in to comment.