Skip to content

Commit

Permalink
Fix ruff warnings in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
funkey committed Apr 3, 2024
1 parent 8ef4447 commit 94e4e26
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ path = "motile/__init__.py"
[tool.ruff]
target-version = "py38"
src = ["motile"]
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle
Expand All @@ -62,9 +63,9 @@ ignore = [
# "D205", # 1 blank line required between summary line and description

]
[tool.ruff.pydocstyle]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D"]

# https://docs.pytest.org/en/6.2.x/customize.html
Expand Down

0 comments on commit 94e4e26

Please sign in to comment.