Skip to content

Commit 9702613

Browse files
Enforce ruff/Perflint rules (PERF)
1 parent 0cff15c commit 9702613

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

pyproject.toml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -207,21 +207,22 @@ extend-exclude = [
207207

208208
[tool.ruff.lint]
209209
extend-select = [
210-
"ANN", # flake8-annotations
211-
"B", # flake8-bugbear
212-
"C4", # flake8-comprehensions
213-
"FLY", # flynt
214-
"I", # isort
215-
"ISC", # flake8-implicit-str-concat
216-
"PGH", # pygrep-hooks
217-
"PT", # flake8-pytest-style
218-
"PYI", # flake8-pyi
219-
"RSE", # flake8-raise
220-
"RET", # flake8-return
210+
"ANN", # flake8-annotations
211+
"B", # flake8-bugbear
212+
"C4", # flake8-comprehensions
213+
"FLY", # flynt
214+
"I", # isort
215+
"ISC", # flake8-implicit-str-concat
216+
"PERF", # Perflint
217+
"PGH", # pygrep-hooks
218+
"PT", # flake8-pytest-style
219+
"PYI", # flake8-pyi
220+
"RSE", # flake8-raise
221+
"RET", # flake8-return
221222
"RUF",
222-
"TCH", # flake8-type-checking
223-
"TRY", # tryceratops
224-
"UP", # pyupgrade
223+
"TCH", # flake8-type-checking
224+
"TRY", # tryceratops
225+
"UP", # pyupgrade
225226
]
226227
ignore = [
227228
"ANN003",

0 commit comments

Comments
 (0)