Ticketfly's stylelint configuration.
npm install stylelint-config-ticketfly
In your .stylelintrc
file, extend this config:
{
"extends": "stylelint-config-ticketfly"
}
Simply add a "rules"
key to your config and add your overrides there.
For example, to change string-quotes
to single
and turn off the max-empty-lines
rule:
{
"extends": "stylelint-config-suitcss",
"rules": {
"string-quotes": "single",
"max-empty-lines": null
}
}
This project uses the npmpub
package to help automate the steps involved
with publishing package versions to npm
. Because npmpub
encourages manual
updating of the CHANGELOG
and the package.json
version, you'll need to handle
those first, commit with the message
"released x.x.x" and then run npm run release
.