stylelint-config-ts
v0.0.19
Published
Thought Shop shareable configuration for Stylelint.
Readme
stylelint-config-ts
Thought Shop shareable configuration for Stylelint.
This config:
- extends the
stylelint-config-standard-scss
To see the rules that this config uses, please read the config itself.
Installation
yarn add --dev stylelint-config-tsUsage
Set your stylelint config to:
{
"extends": "stylelint-config-ts"
}Extending the config
Simply add a "rules" key to your config, then add your overrides and additions there.
For example, to turn off the scss/dollar-variable-pattern rule:
{
"extends": "stylelint-config-standard-scss",
"rules": {
"scss/dollar-variable-pattern": null
}
}