0.0.3 • Published 4 years ago

tarot-stylelint-config v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

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