.stylelintrc.json 405 B

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