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.
24 lines
627 B
TOML
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/",
|
|
]
|