# @angular-eslint/schematics

> Angular Schematics for angular-eslint

Latest version **22.5.0** (published 2026-09-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @angular-eslint/schematics
pnpm add @angular-eslint/schematics
yarn add @angular-eslint/schematics
bun add @angular-eslint/schematics
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads; no esm support.

## Facts

| | |
|---|---|
| Version | 22.5.0 |
| Published | 2026-09-07 |
| First published | 2020-03-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 7 |
| Unpacked size | 107.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 1784 |
| Maintainers | jameshenry |

## Links

- npm: https://www.npmjs.com/package/@angular-eslint/schematics
- Repository: https://github.com/angular-eslint/angular-eslint
- Issues: https://github.com/angular-eslint/angular-eslint/issues
- npm.io page: https://npm.io/package/@angular-eslint/schematics

## Dependencies (7)

- [ignore](https://npm.io/package/ignore.md) 7.0.8
- [semver](https://npm.io/package/semver.md) 7.8.5
- [strip-json-comments](https://npm.io/package/strip-json-comments.md) 3.1.1
- [@angular-devkit/core](https://npm.io/package/@angular-devkit/core.md) >= 22.0.0 < 23.0.0
- [@angular-devkit/schematics](https://npm.io/package/@angular-devkit/schematics.md) >= 22.0.0 < 23.0.0
- [@angular-eslint/eslint-plugin](https://npm.io/package/@angular-eslint/eslint-plugin.md) 22.5.0
- [@angular-eslint/eslint-plugin-template](https://npm.io/package/@angular-eslint/eslint-plugin-template.md) 22.5.0

## Recent versions

- 22.5.0 (latest) — 2026-09-07
- 22.5.1-alpha.6 (canary) — 2026-09-17
- 19.8.1 (previous) — 2025-06-19
- 20.0.0-beta.1 (prerelease-v20) — 2025-06-02
- 19.4.1-pr-2451-1 (prerelease-v19) — 2025-05-25
- 18.0.0-alpha.16 (rc-v18) — 2024-05-28
- 17.0.0-alpha.0 (next) — 2023-11-06
- 4.3.1 (patch) — 2021-11-18
- 4.2.0-tmp.0 (tmp) — 2021-04-28
- 22.5.1-alpha.5 — 2026-09-17
- 22.5.1-alpha.4 — 2026-09-14
- 22.5.1-alpha.3 — 2026-09-13
- 22.5.1-alpha.2 — 2026-09-13
- 22.5.1-alpha.1 — 2026-09-08
- 22.5.1-alpha.0 — 2026-09-07
- … 1219 more at https://npm.io/package/@angular-eslint/schematics/versions

## README

# @angular-eslint/schematics

Please see https://github.com/angular-eslint/angular-eslint for full usage instructions and guidance.

The `@angular-eslint/schematics` package is a set of custom Angular CLI Schematics which are used to add and update dependencies and configuration files which are relevant for running ESLint on an Angular workspace.

## Options

### `--skip-install`

Skips installing npm packages when running `ng add @angular-eslint/schematics`. This can be useful when the schematic is executed as part of a larger workflow that handles dependency installation separately.

```
ng add @angular-eslint/schematics --skip-install
```

### `--tseslint-preset`

Chooses which typescript-eslint shared config the generated `eslint.config.js` extends. Defaults to `recommended`.

Allowed values:

- `recommended` — `tseslint.configs.recommended` + `tseslint.configs.stylistic` (default)
- `strict` — `tseslint.configs.strict` + `tseslint.configs.stylistic`
- `recommendedTypeChecked` — `tseslint.configs.recommendedTypeChecked` + `tseslint.configs.stylisticTypeChecked`, and enables `parserOptions.projectService`
- `strictTypeChecked` — `tseslint.configs.strictTypeChecked` + `tseslint.configs.stylisticTypeChecked`, and enables `parserOptions.projectService`

Type-checked presets make linting more powerful but slower. See [RULES_REQUIRING_TYPE_INFORMATION.md](../../docs/RULES_REQUIRING_TYPE_INFORMATION.md). `strictTypeChecked` currently flags Angular CLI's generated `src/main.ts` bootstrap `.catch(...)` callback; that is expected from the preset.

```
ng add @angular-eslint/schematics --tseslint-preset=strictTypeChecked
```

The same option is accepted by `add-eslint-to-project`, `application`, and `library`. It is applied when the root ESLint config is created.

### `--set-parser-options-project`

Enables `parserOptions.projectService` in the generated ESLint config so that rules requiring type information can run, without changing the typescript-eslint preset. Type-checked `tseslintPreset` values imply this option.

```
ng add @angular-eslint/schematics --set-parser-options-project
```

---
_Source: https://npm.io/package/@angular-eslint/schematics · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
