Files
Crussell/.gitleaks.toml
T
popertots 1f3d834f0c docs: add feature catalog and update gap backlog
Feature Catalog: comprehensive audit of all 15 feature areas with cross-references, verified against source code (18 parallel deep-dive agents). Gap Backlog: rewritten with dev-to-prod integration framing, 40 items across Pre-Launch/MVP/Stretch/Tech Debt. Gitleaks: whitelist obsidian/ docs containing curl examples.
2026-08-22 00:34:49 +01:00

24 lines
627 B
TOML

# Gitleaks configuration for Crussell
title = "Crussell secrets scanning"
[extend]
# Use the default gitleaks rules
useDefault = true
# Allowlist paths and regexes that are known safe
[allowlist]
description = "Known false positives"
paths = [
# Test fixtures with mock data
"backend/testutils/",
"backend/handlers/.*_test.go",
# Example env file with placeholder values
".env.example",
# SabreDAV dependency files
"sabredav/composer.json",
# Frontend env examples
"frontend/.env.production",
# Obsidian docs — contain API curl examples with Authorization headers
"obsidian/",
]