tarot-stylelint-config

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

Usage no npm install needed!

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

README

tarot-stylelint-config

Default Stylelint configuration for Tarot.

This package is automatically used in the Tarot build process unless you have provided a custom stylelintConfigPath.

To use in your own custom configuration, install then extend this package in your stylelint config:

yarn add --dev tarot-stylelint-config
// .stylelintrc
{
    "extends": [
        "tarot-stylelint-config"
    ]
}

or

// stylelint.config.js
module.exports = {
    extends: [ require.resolve('tarot-stylelint-config') ],
}