1.0.0 • Published 2 years ago

node-eslint-config v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Common JavaScript coding style - ESLint Shareable Config

Install

npm install node-eslint-config

Usage

Shareable configs are designed to work with the extends feature of .eslintrc files. You can learn more about Shareable Configs on the official ESLint website.

To use the JavaScript Common Style shareable config, first run this:

npm install eslint-config-common eslint-plugin-standard eslint-plugin-promise

Then, add this to your .eslintrc file:

{
  "extends": "node-eslint-config"
}

You can override settings from the shareable config by adding them directly into your .eslintrc file.