Skip to content

Commit

Permalink
chore: run flake8-to-ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
jenstroeger committed Aug 2, 2023
1 parent def6289 commit fcda704
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,12 @@ filterwarnings = [
# https://beta.ruff.rs/docs/settings/
[tool.ruff]
src = ["src/package/", "test/"]
select = ["E", "F", "B", "Q"]
ignore = ["E501"]
select = ["B", "B9", "D", "E", "F", "W"]
ignore = ["D105", "E501"]
line-length = 120
target-version = "py310"

[tool.ruff.pydocstyle]
convention = "numpy"

[tool.ruff.per-file-ignores]

0 comments on commit fcda704

Please sign in to comment.