mirror of
https://github.com/casey/just.git
synced 2025-08-04 23:17:59 +00:00
15 lines
283 B
Bash
Executable file
15 lines
283 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
if ! which rg > /dev/null; then
|
|
echo 'error: `rg` not found, please install ripgrep: https://github.com/BurntSushi/ripgrep/'
|
|
exit 1
|
|
fi
|
|
|
|
! rg \
|
|
--glob !CHANGELOG.md \
|
|
--glob !bin/forbid \
|
|
--ignore-case \
|
|
'dbg!|fixme|todo|xxx' \
|
|
.
|