12 lines
148 B
Bash
Executable File
12 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
which rg
|
|
|
|
! rg \
|
|
--glob !bin/forbid \
|
|
--glob !CHANGELOG.md \
|
|
--ignore-case \
|
|
'dbg!|fixme|todo|xxx'
|