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