mirror of
https://github.com/curl/curl.git
synced 2026-01-29 10:54:28 +00:00
It contains names. Reported-by: Daniel Stenberg Fixes #20376 Revert 3e3d526c4ce4fea3c3a1b46bf55cc1b64fa10c5d Follow-up to 5f5e000278df1029db2ee3f4499b5ce27c1861b2 Follow-up to 85cfc15601b19f13f1d480e6f7ba8922850429c3 Follow-up to 977595772c6e650b538da965cde676c9bc15cfd8 Follow-up to 0260e8465a2373b22588086acdfa5f4cf0e16e29 #17905 Closes #20378
22 lines
496 B
Bash
Executable File
22 lines
496 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "${0}")"/../..
|
|
|
|
git ls-files -z | xargs -0 -r \
|
|
codespell \
|
|
--skip '.github/scripts/pyspelling.words' \
|
|
--skip '.github/scripts/typos.toml' \
|
|
--skip 'docs/THANKS' \
|
|
--skip 'projects/OS400/*' \
|
|
--skip 'projects/vms/*' \
|
|
--skip 'RELEASE-NOTES' \
|
|
--skip 'scripts/wcurl' \
|
|
--ignore-regex '.*spellchecker:disable-line' \
|
|
--ignore-words '.github/scripts/codespell-ignore.words' \
|
|
--
|