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

eslint-config-reverentgeek

v7.1.13

Published

ESLint rules that ReverentGeek likes :)

Readme

eslint-config-reverentgeek

This package is ReverentGeek's preferred configuration settings for eslint.

Available Configs

| Config | Description | | ------ | ----------- | | common | Base configuration with core stylistic and JavaScript rules | | node | Node.js with CommonJS modules (extends common) | | node-esm | Node.js with ES modules (extends common) | | browser | Browser environment with ES modules (extends common) | | react | Adds JSX parsing support | | esm | ES modules support | | blog | 2-space indentation for blog code samples |

Usage

  1. Install dependencies.

    npm install --save-dev eslint eslint-config-reverentgeek
  2. Create an eslint.config.js file.

  3. Add the following to the config file.

"use strict";

const defineConfig = require( "eslint/config" ).defineConfig; // eslint-disable-line n/no-unpublished-require
const rg = require( "eslint-config-reverentgeek" ); // eslint-disable-line n/no-unpublished-require

module.exports = defineConfig( [
	{
		extends: [ rg.configs.node ],
		rules: {
		}
	}
] );

The node config adds specific support for Node.js and CommonJS modules.

Alternative Configs

The node-esm config adds specific support for Node.js and ES modules (import/export).

import { defineConfig } from "eslint/config"; // eslint-disable-line n/no-unpublished-import
import rg from "eslint-config-reverentgeek"; // eslint-disable-line n/no-unpublished-import

export default defineConfig( {
	extends: [ rg.configs["node-esm"] ],
	rules: {
	}
} );

The blog config changes the code style to two-spaced indentations, which is better for copying code samples to blog posts.

import { defineConfig } from "eslint/config";
import rg from "eslint-config-reverentgeek";

export default defineConfig( {
  extends: [ rg.configs.browser, rg.configs.blog ]
} );

The react config enables JSX parsing. Combine it with the browser config for browser globals and ES module support. If you want React-specific lint rules, add eslint-plugin-react in your own config.

npm install --save-dev eslint-plugin-react
import { defineConfig } from "eslint/config";
import rg from "eslint-config-reverentgeek";
import react from "eslint-plugin-react";

export default defineConfig( {
	extends: [ rg.configs.browser, rg.configs.react ],
	plugins: {
		react
	},
	rules: {
		"react/jsx-uses-react": "off",
		"react/react-in-jsx-scope": "off"
	}
} );

The browser config sets the browser environment and adds ES module support.

import { defineConfig } from "eslint/config";
import rg from "eslint-config-reverentgeek";

export default defineConfig( {
	extends: [ rg.configs.browser ]
} );