(filePath: string)
| 16 | ] |
| 17 | |
| 18 | function isSensitiveFile(filePath: string): boolean { |
| 19 | return SENSITIVE_FILES.some((pattern) => pattern.test(filePath)) |
| 20 | } |
| 21 | |
| 22 | export const SecurityScanPlugin = async ({ $ }) => { |
| 23 | return { |
no outgoing calls
no test coverage detected