()
| 89 | } |
| 90 | |
| 91 | export function createPackageConfig(): string { |
| 92 | const packageConfigFile = TemplateFile.init(TEMPLATE_BASE_PATHS.ESLINT_PACKAGE_JSON_CONFIG); |
| 93 | return packageConfigFile.expandTemplate(); |
| 94 | } |
| 95 | |
| 96 | export async function getPrettierConfig(configPath: string): Promise<prettier.Options | null> { |
| 97 | return await prettier.resolveConfig(configPath); |
no test coverage detected