| 15 | import { pathToFileURL } from "node:url"; |
| 16 | |
| 17 | interface ScanFinding { |
| 18 | ruleId: string; |
| 19 | severity: "critical" | "warn" | "info"; |
| 20 | file: string; |
| 21 | line: number; |
| 22 | message: string; |
| 23 | evidence: string; |
| 24 | } |
| 25 | |
| 26 | interface ScanSummary { |
| 27 | scannedFiles: number; |
nothing calls this directly
no outgoing calls
no test coverage detected