eslint-config-cnp

Sharable ESLint configuration to make configuration for ESLint easier

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eslint-config-cnp
101.1.09 months ago10 months agoMinified + gzip package size for eslint-config-cnp in KB

Readme

eslint-config-cnp
npm version Downloads/month Release Testing Linting Build codecov
Sharable ESLint configuration for create-npm-package

Usage

  • Install

npm i eslint-config-cnp -D

  • For node.js npm package
.eslintrc.js
module.export = {
  root: true,
  extends: ['cnp'],
};

  • If jest is using
.eslintrc.js
module.export = {
  root: true,
  extends: ['cnp', 'cnp/jest'], // test files should match the patterns ['test/**', '**/__tests__/**/*', '**/*.{spec,test}.*']
};

  • If react is using
.eslintrc.js
module.export = {
  root: true,
  extends: ['cnp/react'],
};