* feat(linter): convert-tslint-to-eslint generators * fix(core): remove generators in collection for ng and nest * fix(core): update tao to support mixed generators and schematics * fix(core): update tao to support mixed generators and schematics * fix(core): address some PR feedback * fix(core): fix snapshots after syncing up with master * feat(core): store user preference for removeTSLintIfNoMoreTSLintTargets * fix(linter): unit tests * feat(core): apply root tslint.json conversion to root .eslintrc.json
22 lines
564 B
TypeScript
22 lines
564 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.
|
|
*/
|
|
export default {
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true,
|
|
},
|
|
plugins: ['@angular-eslint'],
|
|
extends: ['plugin:@angular-eslint/recommended'],
|
|
rules: {},
|
|
};
|