10 lines
225 B
Plaintext
10 lines
225 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
#
|
||
|
# see https://github.com/codespell-project/codespell
|
||
|
#
|
||
|
# in short:
|
||
|
# - pip install codespell
|
||
|
# - add ~/.local/bin to PATH
|
||
|
|
||
|
codespell $* -L "tim" `git ls-files|egrep -v '_fuzzer.in|_fuzzer.repro|^list$'`
|