Skip to content

Angular

Package: @santi020k/eslint-config-angular

Use the Angular package when the project needs Angular-specific linting on top of the shared base and TypeScript stack.

Install

bash
npm install -D @santi020k/eslint-config-angular

Configure

js
import angular from '@santi020k/eslint-config-angular'
import { eslintConfig } from '@santi020k/eslint-config-basic'

export default eslintConfig({
  typescript: true,
  frameworks: {
    angular
  }
})

What It Adds

  • Angular-specific linting as an explicit framework package.
  • A modular install path, so non-Angular projects do not inherit Angular dependencies.
  • A clean composition model that still fits the shared eslintConfig() API.

Notes

  • Angular projects usually benefit from enabling TypeScript.
  • Framework packages remain explicit even when the rest of the config is auto-detected.

Built by Santi020k. Repo and personal site linked throughout the docs.