UNPKG

@swis/stylelint-config

Version:

SCSS Standard Style - Stylelint Shareable Config for SWIS

33 lines (32 loc) 905 B
module.exports = { "extends": "stylelint-config-standard", "rules": { "indentation": 4, "no-empty-source": null, "at-rule-no-unknown": null, "scss/at-rule-no-unknown": true, "at-rule-empty-line-before": null, "no-missing-end-of-source-newline": null, "number-leading-zero": "never", "selector-pseudo-element-colon-notation": null, "order/order": [ "custom-properties", "dollar-variables", { "type": "at-rule", "hasBlock": false }, "declarations", { "type": "at-rule", "hasBlock": true }, "rules", { "type": "at-rule", "name": "content" } ], "order/properties-alphabetical-order": true } }