@nx/react-native
Version:
14 lines (13 loc) • 456 B
TypeScript
import { Linter, LinterType } from '@nx/eslint';
import { GeneratorCallback, Tree } from '@nx/devkit';
interface NormalizedSchema {
linter?: Linter | LinterType;
projectName: string;
projectRoot: string;
setParserOptionsProject?: boolean;
tsConfigPaths: string[];
skipPackageJson?: boolean;
addPlugin?: boolean;
}
export declare function addLinting(host: Tree, options: NormalizedSchema): Promise<GeneratorCallback>;
export {};