# eslint-config-nlueg-angular

> ESLint-Configuration for all of my Angular projects

Latest version **22.1.0** (published 2026-09-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install eslint-config-nlueg-angular
pnpm add eslint-config-nlueg-angular
yarn add eslint-config-nlueg-angular
bun add eslint-config-nlueg-angular
```

## Health

**Score 55/100 (C)** — status: active.

Positive: no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads; no types; no esm support.

## Facts

| | |
|---|---|
| Version | 22.1.0 |
| Published | 2026-09-01 |
| First published | 2023-05-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 10 |
| Unpacked size | 7.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Nico Lueg |
| Maintainers | nico.lueg |
| Keywords | eslint, eslintconfig, styleguide, angular, angular-eslint, nlueg |

## Links

- npm: https://www.npmjs.com/package/eslint-config-nlueg-angular
- Repository: https://github.com/NLueg/localforage-cordova-sq-lite-driver
- Homepage: https://github.com/NLueg/localforage-cordova-sq-lite-driver#readme
- Issues: https://github.com/NLueg/localforage-cordova-sq-lite-driver/issues
- npm.io page: https://npm.io/package/eslint-config-nlueg-angular

## Dependencies (10)

- [eslint](https://npm.io/package/eslint.md) ^10.9.1
- [prettier](https://npm.io/package/prettier.md) ^3.9.6
- [@eslint/js](https://npm.io/package/@eslint/js.md) ^10.0.1
- [angular-eslint](https://npm.io/package/angular-eslint.md) ^22.2.0
- [typescript-eslint](https://npm.io/package/typescript-eslint.md) 8.69.0
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) 10.1.8
- [eslint-plugin-import-x](https://npm.io/package/eslint-plugin-import-x.md) 4.17.1
- [eslint-plugin-prettier](https://npm.io/package/eslint-plugin-prettier.md) 5.5.6
- [eslint-plugin-unused-imports](https://npm.io/package/eslint-plugin-unused-imports.md) 4.4.1
- [eslint-plugin-simple-import-sort](https://npm.io/package/eslint-plugin-simple-import-sort.md) 14.0.0

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 22.1.0 (latest) — 2026-09-01
- 20.0.1 — 2025-07-25
- 20.0.0 — 2025-07-25
- 19.1.0 — 2025-03-13
- 19.1.0-rc0 — 2025-03-13
- 19.0.0-rc2 — 2025-03-13
- 19.0.0-rc1 — 2025-03-12
- 19.0.0-rc0 — 2025-03-12
- 18.0.3 — 2024-07-15
- 18.0.2 — 2024-07-03
- 18.0.1 — 2024-07-03
- 18.0.0 — 2024-07-03
- 17.1.0 — 2024-04-29
- 17.0.1 — 2024-01-01
- 16.0.1 — 2023-09-22
- … 4 more at https://npm.io/package/eslint-config-nlueg-angular/versions

## README

# eslint-config-nlueg-angular

[![GitHub License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/NLueg/eslint-config-nlueg-angular/blob/master/LICENSE)
[![NPM version](https://img.shields.io/npm/v/eslint-config-nlueg-angular.svg)](https://www.npmjs.com/package/eslint-config-nlueg-angular)

This package includes a basic ESLint configuration for linting and formatting my Angular code.

As a basis I use [Angular ESLint](https://github.com/angular-eslint/angular-eslint), [TypeScript ESLint](https://github.com/typescript-eslint/typescript-eslint), [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) and [eslint-plugin-rxjs](https://github.com/cartant/eslint-plugin-rxjs).
Also I include [eslint-plugin-import-x](https://github.com/un-ts/eslint-plugin-import-x) and [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports) to have beautiful imports.

I use this config basically in every Angular-Project to have less smelly and well formatted code ✨

## Installation

Install the plugin with npm

```bash
  npm install eslint-config-nlueg-angular
```

Create `eslint.config.mjs` at your root folder and extend from the config: 

```js
import baseConfig from './node_modules/eslint-config-nlueg-angular/eslint.config.mjs';

export default [
...baseConfig,
];

```

You can also change some specific rules like the following:

```js
import baseConfig from './node_modules/eslint-config-nlueg-angular/eslint.config.mjs';
import angularEslintTemplate from '@angular-eslint/eslint-plugin-template';

export default [
  ...baseConfig,
  {
    plugins: {
      "@angular-eslint/template": angularEslintTemplate,
    },
    rules: {
      "@typescript-eslint/no-empty-function": "off",
      "@typescript-eslint/no-explicit-any": "off",
      "@typescript-eslint/no-non-null-assertion": "off",
      "@angular-eslint/template/click-events-have-key-events": "warn",
      "@angular-eslint/template/interactive-supports-focus": "warn",
    }
  }
];
```

Ensure that you define the corresponding plugin where the specific rule is defined in.
Otherwise, it won't work to change the severity of a rule.

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