.stylelintrc 957 B

123456789101112131415161718192021222324
  1. {
  2. "extends": "stylelint-config-standard",
  3. "rules": {
  4. "no-duplicate-selectors": true,
  5. "indentation": null,
  6. "color-hex-case": "lower",
  7. "color-hex-length": "long",
  8. "selector-combinator-space-after": "never",
  9. "declaration-block-trailing-semicolon": "always",
  10. "declaration-colon-space-before": "never",
  11. "declaration-colon-newline-after": null,
  12. "comment-whitespace-inside": "always",
  13. "comment-empty-line-before": null,
  14. "selector-pseudo-class-parentheses-space-inside": "always",
  15. "selector-list-comma-newline-after": null,
  16. "media-feature-range-operator-space-before": "always",
  17. "media-feature-range-operator-space-after": "always",
  18. "media-feature-parentheses-space-inside": "always",
  19. "media-feature-colon-space-before": "always",
  20. "media-feature-colon-space-after": "always",
  21. "no-eol-whitespace": null,
  22. "no-missing-end-of-source-newline": null,
  23. "number-leading-zero": "never" }
  24. }