@cherihung/eslint-config-gatsby

1.0.7 • Public • Published

NPM version Dependency Status Dev Dependency Status

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: {
    //...
  }
}

Readme

Keywords

Package Sidebar

Install

npm i @cherihung/eslint-config-gatsby

Weekly Downloads

12

Version

1.0.7

License

MIT

Last publish

Collaborators

  • cherihung