10 lines
303 B
TypeScript
Executable File
10 lines
303 B
TypeScript
Executable File
export type ConfigAvailable = {
|
|
exists: boolean;
|
|
emptyEslintrc?: boolean;
|
|
emptyPkgJsonConfig?: boolean;
|
|
firstTimeSetup?: true;
|
|
};
|
|
export declare function hasEslintConfiguration(eslintrcFile: string | null, packageJsonConfig: {
|
|
eslintConfig: any;
|
|
} | null): Promise<ConfigAvailable>;
|