forge-guard 0.3.6

Pre-deployment smart contract auditing framework for Foundry
Documentation
# forge-guard configuration
# This config points the audit tool to sample contracts for CI self-testing.

# Source directories to scan for .sol files
# CI uses the secure contract directory — vulnerable contracts remain in
# test-contracts/src/ for manual testing via --project-root test-contracts
src_dirs = ["test-contracts/secure/src"]

# Security engine settings
[security]
enable_high = true
enable_medium = true
enable_low = true
enable_info = false

# Report settings
[report]
include_snippets = true
include_exploit_paths = false
include_recommendations = true

# Caching
[cache]
enabled = false