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

@mizdra/oxlint-config

v0.3.0

Published

Oxlint config for @mizdra

Readme

@mizdra/oxlint-config

Oxlint config for @mizdra

Installation

npm i -D @mizdra/oxlint-config

Usage

import { defineConfig } from 'oxlint';
import mizdra from '@mizdra/oxlint-config';

export default defineConfig({
  extends: [
    mizdra.base,
    mizdra.typescript,
    mizdra.node,
    mizdra.react,
  ],
});

Design

  • Enable all rules in the correctness category
  • Do not use warn severity; use error severity.
    • Allowing both creates uncertainty about which one to use.
    • For consistency, we standardize on error.
  • Do not enable rules that conflict with oxfmt
  • Do not enable rules that can be replaced by TypeScript
    • Examples: getter-return, no-undef, no-unreachable, react/no-unknown-property
    • Today, TypeScript is easy to introduce. You can get started quickly with tsc --init or node main.ts.
    • As a principle, we reduce the number of enabled rules assuming TypeScript is adopted in the project.
  • Do not enable rules that get in the way of trial-and-error coding
    • Examples: no-empty, no-empty-function
    • Code like () => {} is undesirable in production, but it appears frequently while coding. Warning on such code often feels noisy to developers.
    • ref: https://www.mizdra.net/entry/2023/01/31/012705
  • Do not enable rules that warn about code complexity
    • Examples: complexity, max-nested-callbacks, max-params
    • These rules are intended to encourage refactoring by warning about complexity, but in most cases @mizdra ignores those warnings.
      • Refactoring is not done when a warning appears; it is done when code becomes hard to change without refactoring, or when a better design comes to mind.
    • There is little value in enabling rules that are mostly disabled anyway.
  • Do not narrow lint targets with overrides[].files
    • Rules from the typescript plugin are often limited with files: ["*.ts"], but that should be avoided because code in one language can be embedded in files of another language.
      • For example, *.vue can embed TypeScript code inside <script lang="ts">.
      • With files: ["*.ts"], those embedded scripts are not covered by the rules.
    • Also, if "checkJs": true is set in tsconfig.json, *.js can be linted with type information as well.
      • Rules from the typescript plugin should apply to *.js, too.
    • As a principle, it is better to apply all rules to all files.
      • typescript plugin rules may run even on *.vue files without <script lang="ts">, which may slightly increase execution time. But the impact should be minor.
  • Do not enable outdated rules
    • Examples: react/jsx-no-target-blank, react/react-in-jsx-scope