mirror of
https://github.com/curl/curl.git
synced 2026-06-06 15:04:15 +03:00
Apparently regexps do not work as expected. Also seems to pick up some implicit rule from the local machine, but found no option to make the hidden magic visible.
15 lines
293 B
Bash
Executable file
15 lines
293 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "${0}")"/../..
|
|
|
|
git ls-files \
|
|
| grep -v -E '(codespell-ignore\.txt|spellcheck\.words|/wcurl|/THANKS)' \
|
|
| typos \
|
|
--isolated \
|
|
--config '.github/scripts/typos.toml' \
|
|
--file-list -
|