@nx/eslint-plugin
Version:
26 lines (25 loc) • 640 B
TypeScript
/**
* This configuration is intended to be applied to ALL .ts files in Angular
* projects within an Nx workspace.
*
* It should therefore NOT contain any rules or plugins which are related to
* Angular Templates, or more cross-cutting concerns which are not specific
* to Angular.
*
* This configuration is intended to be combined with other configs from this
* package.
*/
declare const _default: {
env: {
browser: boolean;
es6: boolean;
node: boolean;
};
plugins: string[];
extends: string[];
parserOptions: {
project: any[];
};
rules: {};
};
export default _default;