We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3829b86 commit 692e990Copy full SHA for 692e990
packages/angular/cli/src/command-builder/architect-base-command-module.ts
@@ -242,7 +242,7 @@ export abstract class ArchitectBaseCommandModule<T extends object>
242
243
const packageToInstall = await this.getMissingTargetPackageToInstall(choices);
244
if (packageToInstall) {
245
- // Example run: `ng add @angular-eslint/schematics`.
+ // Example run: `ng add angular-eslint`.
246
const AddCommandModule = (await import('../commands/add/cli')).default;
247
await new AddCommandModule(this.context).run({
248
interactive: true,
packages/angular/cli/src/commands/lint/cli.ts
@@ -18,7 +18,7 @@ export default class LintCommandModule
18
override missingTargetChoices: MissingTargetChoice[] = [
19
{
20
name: 'ESLint',
21
- value: '@angular-eslint/schematics',
+ value: 'angular-eslint',
22
},
23
];
24
0 commit comments