File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,8 @@ find -L . -type f -not \( \
4242 -o -path ' ./_bin/*' \
4343 -o -path ' ./_output/*' \
4444 -o -path ' ./_artifacts/*' \
45- -o -path ' ./bazel-*/*' \
46- -o -path ' ./hack/tools/go.mod' \
47- -o -path ' ./hack/tools/go.sum' \
4845 -o -path ' ./.python_virtual_env/*' \
4946 \) -prune \
47+ -o -name ' go.mod' \
48+ -o -name ' go.sum' \
5049 \) | xargs " ${MISSPELL} " -w
Original file line number Diff line number Diff line change @@ -77,11 +77,10 @@ find -L . -type f -not \( \
7777 -o -path ' ./_bin/*' \
7878 -o -path ' ./_output/*' \
7979 -o -path ' ./_artifacts/*' \
80- -o -path ' ./bazel-*/*' \
81- -o -path ' ./hack/tools/go.mod' \
82- -o -path ' ./hack/tools/go.sum' \
8380 -o -path ' ./.python_virtual_env/*' \
8481 \) -prune \
82+ -o -name ' go.mod' \
83+ -o -name ' go.sum' \
8584 \) | xargs " $MISSPELL " --error
8685
8786echo ' PASS: No spelling issues detected'
You can’t perform that action at this time.
0 commit comments