|
| 1 | +{ |
| 2 | + "extends": ["stylelint-config-standard"], |
| 3 | + "plugins": ["stylelint-value-no-unknown-custom-properties"], |
| 4 | + "customSyntax": "postcss-html", |
| 5 | + "rules": { |
| 6 | + "csstools/value-no-unknown-custom-properties": [ |
| 7 | + true, |
| 8 | + { |
| 9 | + "importFrom": ["src/app.css"] |
| 10 | + } |
| 11 | + ], |
| 12 | + "custom-property-pattern": "^(color|spacing|font)-.+", |
| 13 | + "declaration-block-no-duplicate-custom-properties": true, |
| 14 | + "selector-class-pattern": null, |
| 15 | + "no-descending-specificity": null, |
| 16 | + "color-hex-length": null, |
| 17 | + "color-function-notation": null, |
| 18 | + "alpha-value-notation": null, |
| 19 | + "value-keyword-case": null, |
| 20 | + "property-no-vendor-prefix": null, |
| 21 | + "selector-pseudo-element-colon-notation": null, |
| 22 | + "font-family-no-duplicate-names": null, |
| 23 | + "declaration-property-value-keyword-no-deprecated": null, |
| 24 | + "declaration-block-no-redundant-longhand-properties": null, |
| 25 | + "comment-empty-line-before": null, |
| 26 | + "color-function-alias-notation": null, |
| 27 | + "keyframes-name-pattern": null, |
| 28 | + "rule-empty-line-before": null, |
| 29 | + "comment-whitespace-inside": null, |
| 30 | + "selector-pseudo-class-no-unknown": [ |
| 31 | + true, |
| 32 | + { |
| 33 | + "ignorePseudoClasses": ["global"] |
| 34 | + } |
| 35 | + ], |
| 36 | + "shorthand-property-no-redundant-values": null |
| 37 | + }, |
| 38 | + "ignoreFiles": ["dist/**", "build/**", ".svelte-kit/**", "node_modules/**", "src-tauri/target/**"] |
| 39 | +} |
0 commit comments