mirror of
https://github.com/mirror/wget.git
synced 2025-01-07 19:00:30 +08:00
15 lines
483 B
Bash
Executable File
15 lines
483 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# see https://github.com/codespell-project/codespell
|
|
#
|
|
# in short:
|
|
# - pip install codespell
|
|
# - add ~/.local/bin to PATH
|
|
|
|
set -e
|
|
|
|
codespell $* -L "tim,gonna,cas,referer,fpr,vas,msdos,ifset,ba,tage,tolen,files',hist" `git ls-files|\
|
|
egrep -v '_fuzzer.in|_fuzzer.repro|\.der$|\.pem$|gnulib|ChangeLog|tests/gpg|\.png$|\.dat$|contrib/spell-checker|tests/certs/.*\.crt'`
|
|
|
|
#codespell $* -L "tim,gonna,cas,te,referer,ist,fpr,vas" src/wget.c contrib/spell-checker
|