/** * Bypass-violations detector. * * Composes the direct-writes detector with the approved-bypass registry. * * For each direct write the underlying detector finds: * - if the file is listed in the bypass registry → no finding * (the violation is governed by `audit-bypasses` instead) * - otherwise → BYPASS_VIOLATION error * * For each bypass registry entry whose path no longer contains a direct * write → STALE_BYPASS warning (so the registry is kept clean). */ import type { Detector } from './types.js'; export declare const bypassViolationsDetector: Detector; //# sourceMappingURL=bypass-violations.d.ts.map