npm-react-typescript-package-template
Version:
A template to generate a npm package for a react app using typescript and modern CI tools.
19 lines (18 loc) • 381 B
Plain Text
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss",
"stylelint-order"
],
"rules": {
"indentation": 2,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"no-descending-specificity": null,
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true
}
}