/** * Secret Detection Patterns * Common patterns for detecting hardcoded secrets and credentials */ import { SecretPattern } from '../types.js'; /** * Default secret detection patterns * These patterns are used to identify common types of hardcoded secrets */ export declare const DEFAULT_SECRET_PATTERNS: SecretPattern[]; /** * Comment patterns to skip (these are likely examples or documentation) */ export declare const SKIP_PATTERNS: { readonly COMMENT_PREFIXES: readonly ["//", "#", "/*", "*"]; readonly EXAMPLE_KEYWORDS: readonly ["example", "EXAMPLE", "sample", "SAMPLE", "test", "TEST", "TODO", "FIXME"]; }; //# sourceMappingURL=secret-patterns.d.ts.map