tarot-eslint-config
v0.0.9
Published
Default ESLint configuration for Tarot https://github.com/codynova/tarot
Downloads
5
Readme
tarot-eslint-config
Default ESLint configuration for Tarot.
This package is automatically used in the Tarot build
process unless you have provided a custom eslintConfigPath
.
To use in your own custom configuration, install then extend this package in your eslint config:
yarn add --dev tarot-eslint-config
// .eslintrc
{
"extends": [
"tarot-eslint-config"
]
}
or
// .eslintrc.js
module.exports = {
extends: [ require.resolve('tarot-eslint-config') ],
}