We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b850486 commit e549d36Copy full SHA for e549d36
1 file changed
pyproject.toml
@@ -20,7 +20,31 @@ line-length = 100
20
target-version = "py310"
21
22
[tool.ruff.lint]
23
-# Allow fix for all enabled rules (when `--fix`) is provided.
+select = [
24
+ # pycodestyle
25
+ "E",
26
+ "W",
27
+ # Pyflakes
28
+ "F",
29
+ # pep8-naming
30
+ "N",
31
+ # pyupgrade
32
+ "UP",
33
+ # flake8-bugbear
34
+ "B",
35
+ # flake8-simplify
36
+ "SIM",
37
+ # flake8-unused-arguments
38
+ "ARG",
39
+ # Pylint
40
+ "PL",
41
+ # Perflint
42
+ "PERF",
43
+ # Ruff-specific rules
44
+ "RUF",
45
+ # pandas-vet
46
+ "PD",
47
+]
48
fixable = ["ALL"]
49
unfixable = []
50
0 commit comments