.stylelintrc.json 566 B

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