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

@nedcloarbr/biome-config

v2.1.0

Published

BiomeJS Configuration used by NedcloarBR in their projects

Readme

BiomeJS Logo

@nedcloarbr/biome-config

BiomeJS Configuration used by NedcloarBR in their projects

GitHub npm

Table of Contents

Installation

npm install --save-dev --save-exact @biomejs/biome @nedcloarbr/biome-config
yarn add --dev --exact @biomejs/biome @nedcloarbr/biome-config
pnpm install --save-dev --save-exact @biomejs/biome @nedcloarbr/biome-config
bun add --dev --exact @biomejs/biome @nedcloarbr/biome-config

[!WARNING] BiomeJS doesn't fully support Yarn PnP yet — discussion. If you're using Yarn Modern (v2+), opt out of PnP:

# .yarnrc.yml
nodeLinker: node-modules

Configs

All configs extend base unless noted otherwise. The diagram below shows the full inheritance chain:

base
├── nestjs
├── css         (CSS formatter + linting + Tailwind support)
├── html        (HTML formatter + 16 a11y rules)
└── base + html + css
    ├── react
    │   ├── next
    │   └── react-native
    ├── vue
    └── angular

base

General TypeScript/JavaScript config. Includes formatter, linter rules for correctness, style, complexity and suspicious groups, and import organization.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/base"]
}

css

CSS formatter and full CSS linting. Includes Tailwind CSS support out of the box — @tailwind, @apply, @config, theme() and screen() are all recognized.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/css"]
}

html

HTML formatter and all 16 recommended accessibility rules (useAltText, useButtonType, useHtmlLang, noAutofocus, etc.).

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/html"]
}

nestjs

Extends base. Enables TypeScript parameter decorators (@Injectable, @Controller, etc.) and enforces explicit return types on services and controllers.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/nestjs"]
}

react

Extends base + html + css. Adds JSX-specific rules: useSortedClasses (Tailwind class sorting), noReactForwardRef (React 19), noDangerouslySetInnerHtml, a11y rules for JSX, and more.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/react"]
}

next

Extends react. Disables noDefaultExport (required for Next.js pages and layouts) and adds noNextAsyncClientComponent.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/next"]
}

vue

Extends base + html + css. Adds all Vue-specific correctness rules (noVueReservedProps, noVueDuplicateKeys, noVueSetupPropsReactivityLoss, etc.) and nursery rules for Vue directives.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/vue"]
}

angular

Extends base + html + css. Enables TypeScript parameter decorators (@Component, @Injectable, etc.) and enforces explicit return types.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/angular"]
}

react-native

Extends react. Adds React Native-specific rules: noReactNativeDeepImports, noReactNativeLiteralColors, noReactNativeRawText, and useReactNativePlatformComponents.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/react-native"]
}

ignore

A standalone list of commonly ignored paths (build outputs, caches, editor folders, AI tool directories, generated files, etc.). Does not extend base.

// biome.json
{
  "extends": ["@nedcloarbr/biome-config/ignore"]
}

You can combine it with any other config:

// biome.json
{
  "extends": [
    "@nedcloarbr/biome-config/react",
    "@nedcloarbr/biome-config/ignore"
  ]
}