We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6258a6b commit bc62922Copy full SHA for bc62922
1 file changed
pyproject.toml
@@ -3,3 +3,20 @@
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