tarot-stylelint-config
v0.0.3
Published
Default Stylelint configuration for Tarot https://github.com/codynova/tarot
Downloads
6
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') ],
}