mirror of
https://github.com/casey/just.git
synced 2024-11-22 10:26:26 +03:00
13 lines
154 B
Bash
Executable File
13 lines
154 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' \
|
|
.
|