Skip to content

Commit 65372d2

Browse files
committed
[ruff] add more rules and fixes
1 parent 51f8943 commit 65372d2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pyproject.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,13 +194,21 @@ select = [
194194
"Q",
195195
# flake8-return
196196
"RET",
197+
# flake8-simplify
198+
"SIM",
199+
# flake8-unused-arguments
200+
"ARG",
201+
# Perflint
202+
"PERF",
197203

198204
]
199205
ignore = [
200206
# Missing docstring in magic method
201207
"D105",
202208
# Missing docstring in `__init__`
203209
"D107",
210+
# Unused lambda argument
211+
"ARG005",
204212

205213
]
206214

0 commit comments

Comments
 (0)