We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 629d39a commit 268d823Copy full SHA for 268d823
pyproject.toml
@@ -14,32 +14,9 @@ extend-exclude = [
14
]
15
16
[tool.ruff.lint]
17
+# Only lint for import sorting for now
18
select = [
- # defaults
19
- "E4",
20
- "E7",
21
- "E9",
22
- "F",
23
-
24
- # pycodestyle
25
- "E",
26
27
- # isort
28
- "I",
29
30
- # Pylint
31
- "PL",
32
33
- # flake8-slf (private-member-access)
34
- # "SLF001",
35
-]
36
37
-ignore = [
38
- "E501",
39
- # pylint too-many-arguments
40
- "PLR0913",
41
- # pylint magic-value-comparison
42
- "PLR2004",
+ "I", # isort
43
44
45
[tool.ruff.lint.isort]
0 commit comments