Skip to content

Commit 78c903a

Browse files
Use the ruff rule ordering used in the documentation
https://docs.astral.sh/ruff/rules/ See also 9b632fd / #9738.
1 parent aa3ecaf commit 78c903a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,16 +249,16 @@ extend-exclude = ["doc", "_typed_ops.pyi"]
249249

250250
[tool.ruff.lint]
251251
extend-select = [
252-
"W", # pycodestyle warnings
253-
"I", # isort
254-
"UP", # pyupgrade
255252
"B", # flake8-bugbear
256253
"C4", # flake8-comprehensions
257254
"ISC", # flake8-implicit-str-concat
258255
"PIE", # flake8-pie
259256
"TID", # flake8-tidy-imports (absolute imports)
260-
"PGH", # pygrep-hooks
257+
"I", # isort
261258
"PERF", # Perflint
259+
"W", # pycodestyle warnings
260+
"PGH", # pygrep-hooks
261+
"UP", # pyupgrade
262262
"RUF",
263263
]
264264
extend-safe-fixes = [

0 commit comments

Comments
 (0)