1234567891011121314151617 |
- {
- "$schema": "https://json.schemastore.org/stylelintrc.json",
- "plugins": ["stylelint-prettier"],
- "extends": ["stylelint-config-standard-less"],
- "rules": {
- "at-rule-no-vendor-prefix": null,
- "declaration-empty-line-before": null,
- "no-invalid-position-at-import-rule": null,
- "prettier/prettier": true,
- "property-no-vendor-prefix": null,
- "selector-attribute-quotes": null,
- "selector-class-pattern": null,
- "selector-id-pattern": null,
- "selector-no-vendor-prefix": null,
- "shorthand-property-no-redundant-values": null
- }
- }
|