We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73a9d53 commit 2499409Copy full SHA for 2499409
pyproject.toml
@@ -170,12 +170,15 @@ extend-allowed-calls = ["datafusion.lit", "lit"]
170
"docs/*" = ["D"]
171
"docs/source/conf.py" = ["ANN001", "ERA001", "INP001"]
172
173
+# CI and pre-commit invoke codespell with different paths, so we have a little
174
+# redundancy here, and we intentionally drop python in the path.
175
[tool.codespell]
176
skip = [
- "./python/tests/test_functions.py",
- "./target",
177
+ "*/tests/test_functions.py",
178
+ "*/target",
179
+ "./uv.lock",
180
"uv.lock",
- "./examples/tpch/answers_sf1/*",
181
+ "*/tpch/answers_sf1/*",
182
]
183
count = true
184
ignore-words-list = ["IST", "ans"]
0 commit comments