Skip to content

Commit e549d36

Browse files
committed
Add more rules used by Ruff
1 parent b850486 commit e549d36

1 file changed

Lines changed: 25 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,31 @@ line-length = 100
2020
target-version = "py310"
2121

2222
[tool.ruff.lint]
23-
# Allow fix for all enabled rules (when `--fix`) is provided.
23+
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+
]
2448
fixable = ["ALL"]
2549
unfixable = []
2650

0 commit comments

Comments
 (0)