.stylelintrc.json 531 B

1234567891011121314151617
  1. {
  2. "formatter": "unix",
  3. "plugins": [ "stylelint-prettier" ],
  4. "extends": [ "stylelint-config-standard-less" ],
  5. "rules": {
  6. "prettier/prettier": true,
  7. "declaration-empty-line-before": null,
  8. "no-invalid-position-at-import-rule": null,
  9. "property-no-vendor-prefix": null,
  10. "selector-no-vendor-prefix": null,
  11. "selector-attribute-quotes": null,
  12. "shorthand-property-no-redundant-values": null,
  13. "at-rule-no-vendor-prefix": null,
  14. "selector-id-pattern": null,
  15. "selector-class-pattern": null
  16. }
  17. }