mirror of
https://github.com/curl/curl.git
synced 2026-01-18 17:21:26 +01:00
20 lines
442 B
Bash
Executable File
20 lines
442 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/spellcheck.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.txt' \
|
|
$(git ls-files)
|