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

@entva/oxlint-config

v2.50.0

Published

Shareable entva styleguide config for oxlint

Readme

@entva/oxlint-config

Shareable entva styleguide config for oxlint.

Bundles eslint-config-entva-* and its storybook/next.js supersets into one oxlint config.

Migrating from ESLint? See LLMs.txt.

How to run

npm install --save-dev @entva/oxlint-config oxlint

Storybook? Also install eslint-plugin-storybook (optional peer dependency).

| Project type | Config file | | --- | --- | | Plain JS/TS + React (default) | node_modules/@entva/oxlint-config/index.json | | Storybook | node_modules/@entva/oxlint-config/storybook.json | | Next.js | node_modules/@entva/oxlint-config/next.json | | Next.js + Storybook | node_modules/@entva/oxlint-config/next-storybook.json |

{
  "scripts": {
    "lint": "oxlint --type-aware -c node_modules/@entva/oxlint-config/next.json --ignore-path node_modules/@entva/oxlint-config/ignore-patterns.txt"
  }
}

Gotchas

  • Point -c straight at the shipped config file. Don't wrap it in your own .oxlintrc.json via "extends".
  • Use --ignore-path, not the config's ignorePatterns field.
  • Run from your project root -- a different cwd breaks --ignore-path matching.
  • --type-aware needs TypeScript 7+. oxlint-tsgolint ships as a dependency, no separate install.

Unsupported rules

| Rule | Why | | --- | --- | | @typescript-eslint/naming-convention | Not implemented in oxlint (oxc#2180) | | import/named | oxlint's native rule skips .ts/.tsx, defers to tsc | | react/jsx-props-no-multi-spaces | Crashes on any JSX element | | no-shadow / no-use-before-define (TS-aware behavior) | No native typescript/* equivalent exists; falls back to the core JS rules, so enums, typedefs, and type/value shadowing aren't handled exactly like @typescript-eslint | | react/react-compiler | Matches what eslint-config-next's core-web-vitals preset enables via eslint-plugin-react-hooks v7 (missing memo deps, setState-in-effect, refs-during-render, etc.), but oxlint's version is a single rule with only one config option (reportAllBailouts) -- no way to disable individual diagnostic categories. Too noisy against real codebases to enable as one all-or-nothing switch. |