npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

biome-plugin-angular

v1.0.0

Published

Biome 2.x plugin for Angular — GritQL port of @angular-eslint rules

Downloads

122

Readme

biome-plugin-angular

npm version CI License: MIT Node.js >=18

Biome 2.x plugin that ports the most important @angular-eslint rules to GritQL. Drop-in replacement for teams migrating from ESLint to Biome on Angular 17–21 projects.


Features

  • GritQL rules fully compatible with Biome 2.x plugin system
  • Covers the most-used @angular-eslint rules (17 rules planned)
  • CLI helper: biome-angular init|merge|remove|rules
  • recommended and strict presets
  • Zero runtime dependencies

Requirements

| Tool | Version | | ----------------- | --------- | | Node.js | >= 18 | | @biomejs/biome | >= 2.0.0 | | Angular | >= 17 |


Installation

npm install --save-dev biome-plugin-angular @biomejs/biome

Getting Started

Option A — CLI (recommended)

# Create a biome.json from scratch
npx biome-angular init

# Or add the plugin to your existing biome.json
npx biome-angular merge

Option B — Manual configuration

Add the plugin to your biome.json:

{
  "$schema": "https://biomejs.dev/schemas/2.0.0/schema.json",
  "plugins": ["biome-plugin-angular"],
  "linter": {
    "enabled": true,
    "rules": {
      "plugins": {
        "angular/prefer-standalone": "error",
        "angular/no-empty-lifecycle-method": "warn",
        "angular/component-class-suffix": "error"
      }
    }
  }
}

Option C — Extend a preset

{
  "$schema": "https://biomejs.dev/schemas/2.0.0/schema.json",
  "extends": ["biome-plugin-angular/presets/recommended"]
}

Rules

High Priority

| Rule | ESLint equivalent | Recommended | Auto-fix | | ---- | ----------------- | :---------: | :------: | | angular/prefer-standalone | @angular-eslint/prefer-standalone | error | — | | angular/no-empty-lifecycle-method | @angular-eslint/no-empty-lifecycle-method | warn | — |

Conventions

| Rule | ESLint equivalent | Recommended | Auto-fix | | ---- | ----------------- | :---------: | :------: | | angular/no-component-suffix | (new — Angular v20+) | warn | — | | angular/component-selector | @angular-eslint/component-selector | warn | — | | angular/no-input-rename | @angular-eslint/no-input-rename | error | — | | angular/no-output-rename | @angular-eslint/no-output-rename | error | — | | angular/no-output-on-prefix | @angular-eslint/no-output-on-prefix | error | — | | angular/pipe-prefix | @angular-eslint/pipe-prefix | warn | — | | angular/sort-ngmodule-metadata-arrays | @angular-eslint/sort-ngmodule-metadata-arrays | warn | — |

Conventions (coming soon)

| Rule | ESLint equivalent | Status | | ---- | ----------------- | ------ | | angular/directive-selector | @angular-eslint/directive-selector | planned |

Quality (coming soon)

| Rule | ESLint equivalent | Status | | ---- | ----------------- | ------ | | angular/use-lifecycle-interface | @angular-eslint/use-lifecycle-interface | planned | | angular/no-host-metadata-property | @angular-eslint/no-host-metadata-property | planned | | angular/use-pipe-transform-interface | @angular-eslint/use-pipe-transform-interface | planned | | angular/contextual-lifecycle | @angular-eslint/contextual-lifecycle | planned | | angular/no-inputs-metadata-property | @angular-eslint/no-inputs-metadata-property | planned | | angular/no-outputs-metadata-property | @angular-eslint/no-outputs-metadata-property | planned |


CLI Reference

biome-angular init [--strict] [--force]
  Create a new biome.json preconfigured with this plugin.
  --strict   Use the strict preset (all rules as errors)
  --force    Overwrite existing biome.json

biome-angular merge [--strict]
  Add this plugin to your existing biome.json without overwriting.

biome-angular remove
  Remove all biome-plugin-angular rules and plugin reference from biome.json.

biome-angular rules
  Print all available rules and their implementation status.

Presets

Two presets are available:

| Preset | Description | | ------ | ----------- | | recommended | All high-priority rules; no-empty-lifecycle-method as warn | | strict | All high-priority rules as errors |

Reference them in biome.json:

{ "extends": ["biome-plugin-angular/presets/strict"] }

Migration from @angular-eslint

If you are migrating from ESLint + @angular-eslint, you can remove the following packages once the corresponding rules are available in this plugin:

npm uninstall eslint @angular-eslint/eslint-plugin @angular-eslint/template-parser

See rules-to-migrate.json for the full migration tracking list.


Contributing

See CONTRIBUTING.md.


License

MIT