mirror of
https://github.com/curl/curl.git
synced 2026-06-06 18:24:49 +03:00
23 lines
512 B
Bash
Executable file
23 lines
512 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "${0}")"/../..
|
|
|
|
# shellcheck disable=SC2046
|
|
codespell \
|
|
--skip '*/spellcheck.words' \
|
|
--skip '*/typos.toml' \
|
|
--skip '*/THANKS' \
|
|
--skip '*/mk-ca-bundle.pl' \
|
|
--skip '*/wcurl' \
|
|
--skip '*/tool_hugehelp.c' \
|
|
--skip 'packages/*' \
|
|
--skip 'winbuild/*' \
|
|
--skip '*/test*' \
|
|
--ignore-regex '.*spellchecker:disable-line' \
|
|
--ignore-words '.github/scripts/codespell-ignore.txt' \
|
|
$(git ls-files)
|