.stylelintrc.json 483 B

12345678910111213141516171819
  1. {
  2. "root": true,
  3. "plugins": ["stylelint-order"],
  4. "extends": ["stylelint-config-standard", "stylelint-config-prettier"],
  5. "customSyntax": "postcss-html",
  6. "rules": {
  7. "at-rule-no-unknown": null,
  8. "number-leading-zero": null,
  9. "no-descending-specificity": null,
  10. "declaration-colon-newline-after": null,
  11. "font-family-no-missing-generic-family-keyword": null,
  12. "unit-no-unknown": [
  13. true,
  14. {
  15. "ignoreUnits": ["rpx", "dpx"]
  16. }
  17. ]
  18. }
  19. }