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

@chubbyts/chubbyts-oxlint

v1.0.1

Published

Oxlint Configuration for chubbyts libraries / framework / projects.

Readme

chubbyts-oxlint

CI npm-version

bugs code_smells duplicated_lines_density ncloc sqale_rating alert_status reliability_rating security_rating sqale_index vulnerabilities

Description

Oxlint Configuration for chubbyts libraries / framework / projects. Provides the same linting contract as @chubbyts/chubbyts-eslint, as close as oxlint allows.

Requirements

Installation

Through NPM as @chubbyts/chubbyts-oxlint.

npm i -D oxlint @chubbyts/chubbyts-oxlint@^1.0.1

Configuration

.oxlintrc.json

{
  "extends": ["./node_modules/@chubbyts/chubbyts-oxlint/oxlintrc.json"]
}

package.json

{
  "scripts": {
    "lint": "oxlint src tests",
    "lint-fix": "oxlint --fix src tests"
  }
}

Differences to chubbyts-eslint

Most rules map 1:1 onto oxlint's native (Rust) implementations. The remaining rules are provided by JS plugins which are shipped with this package:

  • functional/no-let, functional/immutable-data, functional/prefer-tacit: syntactic reimplementations of the rules from eslint-plugin-functional. Oxlint does not provide typescript-eslint parser services to JS plugins, so the type-aware originals cannot run. immutable-data detects mutations structurally (member assignments, delete, mutating array methods, Object.assign and friends on existing values) and therefore cannot detect Map/Set mutations. prefer-tacit only reports wrappers around functions declared in the same file with a matching, fixed arity.
  • importx/order, importx/no-unresolved: reimplementations of the eslint-plugin-import-x rules on top of oxc-resolver (the resolver oxlint itself uses, configured for TypeScript: .ts extensions, .js.ts extension alias, tsconfig paths), keeping this package free of the eslint ecosystem and its typescript version constraint. order implements the default options only (builtin, external, parent, sibling, index). The import-x plugin name is reserved by oxlint for its native rules, hence the importx alias.
  • quotes, semi and linebreak-style do not exist in oxlint; formatting is owned by prettier in all chubbyts projects anyway.
  • eslint.configs.recommended and the non-type-aware part of tseslint.configs.strict are covered by the correctness and suspicious categories plus explicitly enabled typescript/* rules.
  • unused-imports/no-unused-imports is covered by oxlint's eslint/no-unused-vars, which reports and auto-fixes unused imports.

Type-aware linting (beyond the syntactic approximations above) can be added by installing oxlint-tsgolint and running oxlint --type-aware.

Copyright

2026 Dominik Zogg