From 80c0d5ff22c6f870396d132e67695842a605d9d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Fri, 28 Dec 2018 19:45:30 +0100 Subject: [PATCH] Add contrib/spell-checker --- contrib/spell-checker | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 contrib/spell-checker diff --git a/contrib/spell-checker b/contrib/spell-checker new file mode 100755 index 0000000..477d4bc --- /dev/null +++ b/contrib/spell-checker @@ -0,0 +1,9 @@ +#!/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$'`