| 12345678910111213141516 |
- {
- "extends": [
- "stylelint-config-recess-order"
- ],
- "customSyntax": "postcss-scss",
- "rules": {
- "indentation": 2,
- "string-quotes": "single",
- "rule-empty-line-before": [ "always-multi-line", {
- "except": ["after-single-line-comment", "first-nested"],
- "ignore": ["after-comment", "inside-block"]
- } ],
- "selector-combinator-space-before": "always",
- "selector-combinator-space-after": "always"
- }
- }
|