(filePath: string, content = '')
| 183 | const writeConfigFilesThrottled = throttle(500, writeConfigFiles, { noLeading: false }) |
| 184 | |
| 185 | async function writeFile(filePath: string, content = '') { |
| 186 | await fs.mkdir(dirname(filePath), { recursive: true }) |
| 187 | return await fs.writeFile(filePath, content, 'utf-8') |
| 188 | } |
| 189 | |
| 190 | let lastDTS: string | undefined |
| 191 | let lastESLint: string | undefined |
no outgoing calls
no test coverage detected
searching dependent graphs…