( targetDir: string, )
| 146 | } |
| 147 | |
| 148 | async function detectEslintConfig( |
| 149 | targetDir: string, |
| 150 | ): Promise<string | undefined> { |
| 151 | const files = await readdir(targetDir, { encoding: 'utf8' }); |
| 152 | return files.find(file => ESLINT_CONFIG_PATTERN.test(file)); |
| 153 | } |
no outgoing calls
no test coverage detected