📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

@bigcommerce/eslint-config

Package Overview
Dependencies
Maintainers
0
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bigcommerce/eslint-config

Default ESLint configuration used at BigCommerce

2.11.0
latest
Source
npm
Version published
Weekly downloads
3.4K
-4.21%
Maintainers
0
Weekly downloads
 
Created
Source

@bigcommerce/eslint-config

This package is a configuration preset for ESLint.

Install

npm install --save-dev eslint prettier
npm install --save-dev @bigcommerce/eslint-config

Usage

Add @bigcommerce/eslint-config to your project's ESLint configuration file. i.e.:

// .eslintrc.js
require('@bigcommerce/eslint-config/patch');

module.exports = {
  extends: ['@bigcommerce/eslint-config'],
};

This config also runs prettier via eslint, add the following to your package.json

{
  "prettier": "@bigcommerce/eslint-config/prettier"
}

Stylistic rules are considered warnings for better developer experience, however, we recommend running CI with:

eslint --max-warnings 0

Usage with Next.js

Make sure to also extend from next's core-web-vitals.

// .eslintrc.js
require('@bigcommerce/eslint-config/patch');

module.exports = {
  extends: ['@bigcommerce/eslint-config', 'next/core-web-vitals'],
};

Release

Please refer to the documentation of lerna for release options.

License

MIT

FAQs

Package last updated on 04 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts