2
0

.stylelintrc.json 439 B

12345678910111213141516
  1. {
  2. "extends": [
  3. "stylelint-config-recess-order"
  4. ],
  5. "customSyntax": "postcss-scss",
  6. "rules": {
  7. "indentation": 2,
  8. "string-quotes": "single",
  9. "rule-empty-line-before": [ "always-multi-line", {
  10. "except": ["after-single-line-comment", "first-nested"],
  11. "ignore": ["after-comment", "inside-block"]
  12. } ],
  13. "selector-combinator-space-before": "always",
  14. "selector-combinator-space-after": "always"
  15. }
  16. }