1.1.0 • Published 5 years ago

eslint-config-package v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

ESLint Config Package

A pretty standard ESLint configuration I use for my packages.

Installation and Usage

Install the NPM package and all its dependencies:

npm i -D eslint eslint-config-package

Add the configuration to your .eslintrc.js file:

// .eslintrc.js

module.exports = {
  extends: 'package'
}

Or to your .eslintrc file:

// .eslintrc

{
  "extends": "package"
}