(basename: string)
| 60 | } |
| 61 | |
| 62 | const isEnvFile = (basename: string) => |
| 63 | (basename === '.env' || basename.startsWith('.env.')) && |
| 64 | !isEnvTemplateFile(basename) |
| 65 | |
| 66 | const matchesPattern = (str: string) => |
| 67 | SENSITIVE_PATTERNS.prefix.some( |
no test coverage detected