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.
git diff
1 parent d603c5d commit afa91c9Copy full SHA for afa91c9
format.sh
@@ -113,8 +113,11 @@ mypy vllm/logging --config-file pyproject.toml
113
mypy vllm/model_executor --config-file pyproject.toml
114
115
116
+# If git diff returns a file that is in the skip list, the file may be checked anyway:
117
+# https://github.com/codespell-project/codespell/issues/1915
118
+# Avoiding the "./" prefix and using "/**" globs for directories appears to solve the problem
119
CODESPELL_EXCLUDES=(
- '--skip' '*docs/source/_build/**,./tests/lora/data'
120
+ '--skip' 'tests/prompts/**,./benchmarks/sonnet.txt,tests/lora/data/**,build/**'
121
)
122
123
# check spelling of specified files
0 commit comments