File: check_typos.sh

package info (click to toggle)
simdutf 8.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,524 kB
  • sloc: cpp: 64,498; ansic: 15,347; python: 3,592; sh: 366; makefile: 12
file content (13 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

#
# checks for typos. run from the root dir.

set -eu

# this exits with nonzero status if it finds something, which terminates the script
codespell \
    --skip="./benchmarks/competition,./build,./fuzz/work"  \
    -L vie,persan,fo,ans,larg,indx,shft,carryin

echo "no typos detected!"