1.0.7 • Published 6 years ago

@cherihung/eslint-config-gatsby v1.0.7

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

eslint-config-gatsby

ESLint rule configuration for Gatsby starter that I'm working on. http://eslint.org/docs/rules/

Plugins Used:

Usage

Install the configs by running:

npm install --save-dev eslint  @cherihung/eslint-config-gatsby

The plugins and parser used are dependencies of this project. No need to specify them separately in your project.

Then add the extends to your .eslintrc.js to use all the rules:

module.exports = {
  extends: ['@cherihung/gatsby'],
  rules: {
      //...
  }
}

Or specify only the pieces you want to extend:

module.exports = {
  extends: [
   'gatsby/core',
   'gatsby/import',
   'gatsby/babel',
   'gatsby/jsxally',
   'gatsby/react'
  ],
  rules: {
    //...
  }
}