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

@bizdotcom/eslint-config-bdc

v0.0.1

Published

eslint config for business.com, businessnewsdaily.com, buyerzone.com and other related projects

Downloads

5

Readme

eslint-config-bdc

business.com engineering team's eslint setup via reusable NPM package.

This eslint config extends this create react app one and adds prettier formatting to it with some additional rules we standardized around at business.com.

Install:

Step 1: Install the config and all of it's peer deps:

yarn add -D @bizdotcom/eslint-config-bdc eslint-config-react-app @typescript-eslint/[email protected] @typescript-eslint/[email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] prettier eslint-plugin-prettier

or

npm install -D @bizdotcom/eslint-config-bdc eslint-config-react-app @typescript-eslint/[email protected] @typescript-eslint/[email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] prettier eslint-plugin-prettier

Step 2: Create a file named .eslintrc.json with following contents in the root folder of your project:

{
  "extends": "@bizdotcom/eslint-config-bdc"
}

Use:

There are many ways you can run eslint. Here are a few suggestions:

  1. Run eslint in your code editor of choice via eslint extension.

    • vscode eslint extension
      • (Recommended) eslint can do more than just lint, especially the way we have it configured. To automate some of the fixable errors/warnings and the prettier code formatting we recommend that you enable this setting to make eslint run as soon as you hit save. Add this to your settings.json:
        "editor.codeActionsOnSave": {
        	"source.fixAll.eslint": true
        }
    • sublime eslint extension
    • and many more can be found here
  2. An NPM script in your package.json: "lint": "eslint --ext .js,.jsx ./src"

    • optionally you could also add a script which runs the fix command for you: "lint-fix": "yarn run lint --fix"
    • you could have these script run on commit-hooks with help from tools like husky or watch your files and run on save via build tools like webpack, gulp, or eslint-watch etc.
  3. Like we said, these are just our suggested methods, we know there are others, you're welcome to use whichever method works best for you!