.stylelintrc 287 B

123456789101112131415161718
  1. {
  2. "plugins": [
  3. "stylelint-prettier"
  4. ],
  5. "extends": [
  6. "stylelint-prettier/recommended"
  7. ],
  8. "rules": {
  9. "block-no-empty": true,
  10. "length-zero-no-unit": [true, {
  11. ignore: ["custom-properties"]
  12. }],
  13. "shorthand-property-no-redundant-values": true,
  14. },
  15. }