Skip to content

Commit fcda704

Browse files
committed
chore: run flake8-to-ruff
1 parent def6289 commit fcda704

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,12 @@ filterwarnings = [
223223
# https://beta.ruff.rs/docs/settings/
224224
[tool.ruff]
225225
src = ["src/package/", "test/"]
226-
select = ["E", "F", "B", "Q"]
227-
ignore = ["E501"]
226+
select = ["B", "B9", "D", "E", "F", "W"]
227+
ignore = ["D105", "E501"]
228228
line-length = 120
229229
target-version = "py310"
230+
231+
[tool.ruff.pydocstyle]
232+
convention = "numpy"
233+
234+
[tool.ruff.per-file-ignores]

0 commit comments

Comments
 (0)