| 7 | import { PluginParams, LintConfig } from '../../types'; |
| 8 | |
| 9 | interface MigrateParams { |
| 10 | rootDir: string; |
| 11 | tsConfigDir?: string; |
| 12 | config: MigrateConfig; |
| 13 | sources?: string | string[]; |
| 14 | lintConfig?: LintConfig; |
| 15 | } |
| 16 | |
| 17 | export default async function migrate({ |
| 18 | rootDir, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…