mirror of
https://github.com/curl/curl.git
synced 2026-04-12 00:11:42 +08:00
To make it more obvious what needs to be looked at when pyspelling is
reporting an issue.
Follow-up to 95e50ad694 #18756
Closes #18974
20 lines
444 B
Bash
Executable File
20 lines
444 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "${0}")"/../..
|
|
|
|
# shellcheck disable=SC2046
|
|
codespell \
|
|
--skip '.github/scripts/pyspelling.words' \
|
|
--skip '.github/scripts/typos.toml' \
|
|
--skip 'docs/THANKS' \
|
|
--skip 'packages/*' \
|
|
--skip 'scripts/wcurl' \
|
|
--ignore-regex '.*spellchecker:disable-line' \
|
|
--ignore-words '.github/scripts/codespell-ignore.words' \
|
|
$(git ls-files)
|