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 da3634f commit f8f490eCopy full SHA for f8f490e
pyproject.toml
@@ -68,6 +68,8 @@ features = ["substrait"]
68
[tool.ruff.lint]
69
select = ["ALL" ]
70
ignore = [
71
+ "A001", # Allow using words like min as variable names
72
+ "A002", # Allow using words like filter as variable names
73
"ANN401", # Allow Any for wrapper classes
74
"COM812", # Recommended to ignore these rules when using with ruff-format
75
"FIX002", # Allow TODO lines - consider removing at some point
@@ -78,6 +80,7 @@ ignore = [
78
80
"TD002",
79
81
"TD003", # Allow TODO lines
82
"UP007" # Disallowing Union is pedantic
83
+ # TODO: Enable all of the following, but this PR is getting too large already
84
]
85
86
[tool.ruff.lint.pydocstyle]
0 commit comments