blob: 7293a039b36c4ef798cf9f06af5fae69db74e191 [file] [log] [blame]
#!/bin/sh
set -e
result=0
echo "Running 'typos' on source code..."
typos || result=1
# FIXME(typos): checking commit messages hits false positives
# on "words" inside commit hashes. We'd need a way to disable
# checking of combined identifiers to avoid this.
exit $result