Skip to content

Commit aa89106

Browse files
authored
Consistent import sorting (isort) (jaraco/skeleton#157)
1 parent 1a2f930 commit aa89106

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

ruff.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ extend = "pyproject.toml"
55
extend-select = [
66
# upstream
77

8-
"C901",
9-
"PERF401",
10-
"W",
8+
"C901", # complex-structure
9+
"I", # isort
10+
"PERF401", # manual-list-comprehension
11+
"W", # pycodestyle Warning
1112

1213
# Ensure modern type annotation syntax and best practices
1314
# Not including those covered by type-checkers or exclusive to Python 3.11+

0 commit comments

Comments
 (0)