You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.stylelintrc 1009B

1234567891011121314151617181920212223242526
  1. {
  2. "rules": {
  3. "color-no-invalid-hex": true,
  4. "font-family-no-duplicate-names": true,
  5. "font-family-no-missing-generic-family-keyword": true,
  6. "function-calc-no-unspaced-operator": true,
  7. "function-linear-gradient-no-nonstandard-direction": true,
  8. "string-no-newline": true,
  9. "unit-no-unknown": true,
  10. "property-no-unknown": true,
  11. "keyframe-declaration-no-important": true,
  12. "declaration-block-no-duplicate-properties": [true, { ignore: ["consecutive-duplicates-with-different-values"] }],
  13. "declaration-block-no-shorthand-property-overrides": true,
  14. "block-no-empty": true,
  15. "selector-pseudo-class-no-unknown": true,
  16. "selector-pseudo-element-no-unknown": true,
  17. "selector-type-no-unknown": true,
  18. "media-feature-name-no-unknown": true,
  19. "at-rule-no-unknown": true,
  20. "comment-no-empty": true,
  21. "no-duplicate-at-import-rules": true,
  22. "no-duplicate-selectors": true,
  23. "no-empty-source": true,
  24. "no-invalid-double-slash-comments": true,
  25. }
  26. }