0.0.9 • Published 5 years ago
tarot-eslint-config v0.0.9
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') ],
}