.stylelintrc 921 B

1234567891011121314151617181920212223242526
  1. {
  2. "extends": "stylelint-config-standard",
  3. "rules": {
  4. "selector-pseudo-class-no-unknown": null,
  5. "shorthand-property-no-redundant-values": null,
  6. "at-rule-empty-line-before": null,
  7. "at-rule-name-space-after": null,
  8. "comment-empty-line-before": null,
  9. "declaration-bang-space-before": null,
  10. "declaration-empty-line-before": null,
  11. "function-comma-newline-after": null,
  12. "function-name-case": null,
  13. "function-parentheses-newline-inside": null,
  14. "function-max-empty-lines": null,
  15. "function-whitespace-after": null,
  16. "number-leading-zero": null,
  17. "number-no-trailing-zeros": null,
  18. "rule-empty-line-before": null,
  19. "selector-combinator-space-after": null,
  20. "selector-list-comma-newline-after": null,
  21. "selector-pseudo-element-colon-notation": null,
  22. "unit-no-unknown": null,
  23. "no-descending-specificity": null,
  24. "value-list-max-empty-lines": null
  25. }
  26. }