UNPKG

@nx/eslint

Version:

The ESLint plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.

8 lines (7 loc) 290 B
import { CreateNodes, CreateNodesV2 } from '@nx/devkit'; export interface EslintPluginOptions { targetName?: string; extensions?: string[]; } export declare const createNodesV2: CreateNodesV2<EslintPluginOptions>; export declare const createNodes: CreateNodes<EslintPluginOptions>;