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 bcc0848 commit d64c879
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,5 +1,7 @@
exclude = ["venv*"]
line-length = 120
ignore = [
target-version = "py38"
lint.ignore = [
"PLR2004",
"D104",
"D107",
Expand All @@ -9,8 +11,7 @@ ignore = [
"PT023", # Use `@pytest.mark.asyncio()` over `@pytest.mark.asyncio`
"SIM108",
]
exclude = ["venv*"]
select = [
lint.select = [
# "B", # bandit
"C", # complexity
"D", # docstrings
Expand All @@ -25,6 +26,5 @@ select = [
"YTT", # flake8-2020
# "ARG", # flake8-unused args
]
target-version = "py38"
[pydocstyle]
[lint.pydocstyle]
convention = "pep257"

0 comments on commit d64c879

Please sign in to comment.