ESLint rule configuration for Gatsby starter that I'm working on. http://eslint.org/docs/rules/
Plugins Used:
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: {
//...
}
}