// DELIBERATE VIOLATION OF CONTEXT D-33 — DO NOT USE OUTSIDE THE FIREWALL TEST. // // This file lives under src/sim/__test_violation__/ and is excluded from // `npm run lint` via the `ignores` block in eslint.config.js. Its sole // purpose is to be lint-tested by lint-firewall.test.ts to prove the // no-restricted-syntax rule (Phase 2 sim-purity) actually fires. // // The Vitest test runs ESLint programmatically with `ignore: false` // against this file and asserts that `no-restricted-syntax` fires with // the D-33 message. export function violator(): number { return Date.now(); // intentional violation — Phase 2 Plan 02-01 Task 3 }