tarot-eslint-config

Default ESLint configuration for Tarot https://github.com/codynova/tarot

Usage no npm install needed!

<script type="module">
  import tarotEslintConfig from 'https://cdn.skypack.dev/tarot-eslint-config';
</script>

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') ],
}