Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit c87bcb6

Browse files
alphabetize
1 parent ea19cfe commit c87bcb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ruff.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ target-version = "py312"
3838
[lint]
3939
select = [
4040
"ASYNC", # flake8-async - async checks
41+
"E", # pycodestyle - error rules
4142
"F", # pyflakes - general Python errors, undefined names
4243
"I", # isort - import sorting
43-
"E", # pycodestyle - error rules
44-
"W", # pycodestyle - warning rules
44+
"PERF", # perflint - https://docs.astral.sh/ruff/rules/
4545
"PLC", # pylint - convention rules
4646
"PLE", # pylint - error rules
47-
"PERF", # perflint
47+
"W", # pycodestyle - warning rules
4848
]
4949
ignore = ["F405", "F403", "E501", "E712"]
5050

0 commit comments

Comments
 (0)