Skip to content

Commit 9506423

Browse files
committed
Add ruff config (#1)
1 parent e66a575 commit 9506423

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pyproject.toml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[tool.ruff]
2+
# line-length = 120
3+
4+
[tool.ruff.format]
5+
# quote-style = "preserve"
6+
7+
[tool.ruff.lint]
8+
extend-select = ["I"]
9+
10+
[tool.ruff.lint.isort]
11+
section-order = [
12+
"future",
13+
"django",
14+
"standard-library",
15+
"third-party",
16+
"first-party",
17+
"local-folder",
18+
]
19+
20+
[tool.ruff.lint.isort.sections]
21+
# Group all Django imports into a separate section.
22+
"django" = ["django"]

0 commit comments

Comments
 (0)