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

@getresponse/oxlint-config

v1.0.0

Published

GetResponse Oxlint config

Downloads

213

Readme

@getresponse/oxlint-config

npm version Build Status Dependencies License


An opinionated Oxlint ruleset targeting TypeScript + React web apps.

Requirements

  • Oxlint ^1.62.0
  • Node >=22.18 (or ^20.19) — required by Oxlint's TypeScript config support

Installation

npm i -D oxlint @getresponse/oxlint-config

For type-aware TypeScript rules (recommended for TS projects), also install oxlint-tsgolint:

npm i -D oxlint-tsgolint

Usage

Create oxlint.config.ts in your project root:

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

export default defineConfig({
    extends: [config],
});

With local overrides:

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

export default defineConfig({
    extends: [config],
    overrides: [
        {
            files: ['src/legacy/**/*.ts'],
            rules: {
                'typescript/no-explicit-any': 'off',
            },
        },
    ],
});

Then run:

npx oxlint

TypeScript

Oxlint walks up from each linted file to find the nearest tsconfig.json automatically. Type-aware rules require the oxlint-tsgolint package; this config enables them automatically when TypeScript is detected in your project's dependencies.

For most projects, no extra configuration is needed.

When you might want a dedicated tsconfig.oxlint.json

The package does not look for or use a separate lint-time tsconfig (this differs from the old ESLint package which auto-detected tsconfig.eslint.json). If you need a different TS configuration for linting than for building, point oxlint at it via CLI:

{
  "scripts": {
    "lint": "oxlint --tsconfig ./tsconfig.oxlint.json"
  }
}

Reasonable use cases:

  • Your tsconfig.json excludes test files (exclude: ["**/*.test.ts"]) but you want type-aware rules to still work in tests
  • Monorepo with several tsconfig.jsons and you need oxlint to use a specific root
  • Path mappings (paths / baseUrl) that exist only in a separate config

If none of these apply, skip it.

Dynamic rules

Plugin rulesets are enabled automatically when the corresponding package is detected in your package.json dependencies:

| Detected dependency | Preset enabled | |-------------------------------|----------------| | typescript | TypeScript rules (with type-aware analysis) | | react | React + React Hooks rules | | jest | Jest rules | | @playwright/test / playwright | Playwright rules (scoped to test files via playwright.config.*) |

Files ignored by .gitignore are skipped automatically.

Stylistic rules

Stylistic rules (@stylistic/*) are loaded via Oxlint's JS Plugins bridge using @stylistic/eslint-plugin — Oxlint itself doesn't implement most stylistic rules natively. This trades raw speed for compatibility; if you switch to a dedicated formatter (e.g., oxfmt, Prettier), you can override these rules off in your local config.

Mixins

Additional opt-in rulesets:

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

export default defineConfig({
    extends: [config, a11y],
});

| Mixin | Description | |------------------------------------|---| | @getresponse/oxlint-config/a11y | Accessibility rules from Oxlint's native jsx-a11y plugin, with extras bridged via eslint-plugin-jsx-a11y |

Rules list

The web version of the rules list is available on GitHub Pages.