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