Skip to content

Commit a93d488

Browse files
committed
remove all ruff ignore rules
1 parent 5085e14 commit a93d488

File tree

1 file changed

+4
-15
lines changed

1 file changed

+4
-15
lines changed

pyproject.toml

+4-15
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ repair-wheel-command = "DYLD_LIBRARY_PATH=/Users/runner/work/pygit2/pygit2/ci/li
2727
[tool.ruff]
2828
target-version = "py310" # oldest supported Python version
2929
extend-exclude = [ ".cache", ".coverage", "build", "site-packages", "venv*"]
30-
lint.select = [
30+
31+
[tool.ruff.lint]
32+
select = [
3133
"E",
3234
"W",
3335
"F",
@@ -40,20 +42,7 @@ lint.select = [
4042
"PL",
4143
"TID",
4244
]
43-
lint.ignore = [
44-
"W291", # Trailing whitespace
45-
"E501", # Line too long
46-
"W293", # Blank line contains whitespace
47-
"PLR0912", # Too many branches
48-
"PLR2004", # Magic values
49-
"PLR0915", # Too many statements
50-
"PLW0603", # Global statement
51-
"PLR0913", # Too many arguments
52-
"B010", # setattr
53-
"F401", # unused imports
54-
"ARG002", # unused arguments
55-
"SIM105", # try-except-pass
56-
]
45+
ignore = [] # To be added
5746

5847
[tool.ruff.format]
5948
quote-style = "single"

0 commit comments

Comments
 (0)