fixed issues found by pr review

This commit is contained in:
Mick Grove 2025-07-17 15:19:03 -07:00
commit bea92dcfd4
3 changed files with 2 additions and 4 deletions

View file

@ -71,7 +71,7 @@ Kingfisher ships with hundreds of rules that cover everything from classic cloud
| **Databases & Data Ops** | MongoDB Atlas, PlanetScale, Postgres DSNs, Grafana Cloud, Datadog, Dynatrace, and more
| **Payments & Billing** | Stripe, PayPal, Square, GoCardless, and more
| **Security & DevSecOps** | Snyk, Dependency-Track, CodeClimate, Codacy, OpsGenie, PagerDuty, and more
| **Misc. SaaS & Tools** | 1Password, Adobe, Atlassian/Jira, Asana, Netlify, Baremetrics, and mmore
| **Misc. SaaS & Tools** | 1Password, Adobe, Atlassian/Jira, Asana, Netlify, Baremetrics, and more
## Write Custom Rules!

View file

@ -1,7 +1,7 @@
rules:
- name: Replicate API Token
id: kingfisher.replicate.1
pattern: | #
pattern: |
(?x)
\b
(

View file

@ -30,8 +30,6 @@ RUN set -eux; \
echo "$EXPECTED_CHECKSUM kingfisher.tgz" | sha256sum -c -; \
tar -xzf kingfisher.tgz; \
rm kingfisher.tgz checksums.txt; \
tar -xzf kingfisher.tgz; \
rm kingfisher.tgz; \
# locate the binary (pattern covers kingfisher-linux-x64 / kingfisher-linux-arm64)
KF_PATH=$(find . -type f -name 'kingfisher*' -executable -print -quit); \
if [ -z "$KF_PATH" ]; then echo "No executable kingfisher binary found" >&2; exit 1; fi; \