Skip to content

Commit f8f490e

Browse files
committed
Cut off lint errors for this PR
1 parent da3634f commit f8f490e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ features = ["substrait"]
6868
[tool.ruff.lint]
6969
select = ["ALL" ]
7070
ignore = [
71+
"A001", # Allow using words like min as variable names
72+
"A002", # Allow using words like filter as variable names
7173
"ANN401", # Allow Any for wrapper classes
7274
"COM812", # Recommended to ignore these rules when using with ruff-format
7375
"FIX002", # Allow TODO lines - consider removing at some point
@@ -78,6 +80,7 @@ ignore = [
7880
"TD002",
7981
"TD003", # Allow TODO lines
8082
"UP007" # Disallowing Union is pedantic
83+
# TODO: Enable all of the following, but this PR is getting too large already
8184
]
8285

8386
[tool.ruff.lint.pydocstyle]

0 commit comments

Comments
 (0)