catalyst-frontend
Version:
A configurable frontend build pipeline that caters for everything from simple SASS compilation only, right through to ES2015 plus React.
20 lines (19 loc) • 534 B
Plain Text
{
"extends": [
"stylelint-config-standard",
"stylelint-config-sass-guidelines"
],
"defaultSeverity": "warning",
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"max-nesting-depth": [3, {
"ignore": ["blockless-at-rules", "pseudo-classes"],
"ignoreAtRules": ["media"]
}],
"no-descending-specificity": null,
"order/properties-alphabetical-order": null,
"selector-max-compound-selectors": [4],
"selector-max-id": [1],
"selector-no-qualifying-type": null
}
}