|
| 1 | +{ |
| 2 | + "extends": [], |
| 3 | + "overrides": [ |
| 4 | + { |
| 5 | + "files": ["*.vue", "**/*.vue"], |
| 6 | + "customSyntax": "postcss-html" |
| 7 | + } |
| 8 | + ], |
| 9 | + "rules": { |
| 10 | + "import-notation": "url", |
| 11 | + "font-family-no-missing-generic-family-keyword": true, |
| 12 | + "declaration-block-no-redundant-longhand-properties": true, |
| 13 | + "declaration-property-value-no-unknown": [ |
| 14 | + true, |
| 15 | + { |
| 16 | + "ignoreProperties": { |
| 17 | + "speak": ["none"], |
| 18 | + "app-region": ["drag", "no-drag"] |
| 19 | + } |
| 20 | + } |
| 21 | + ], |
| 22 | + "color-function-notation": "modern", |
| 23 | + "shorthand-property-no-redundant-values": true, |
| 24 | + "selector-pseudo-element-colon-notation": "double", |
| 25 | + "no-duplicate-selectors": true, |
| 26 | + "font-weight-notation": "numeric", |
| 27 | + "length-zero-no-unit": true, |
| 28 | + "color-no-invalid-hex": true, |
| 29 | + "number-max-precision": 4, |
| 30 | + "property-no-vendor-prefix": true, |
| 31 | + "value-no-vendor-prefix": true, |
| 32 | + "selector-no-vendor-prefix": true, |
| 33 | + "media-feature-name-no-vendor-prefix": true, |
| 34 | + "selector-max-universal": 1, |
| 35 | + "selector-max-type": 2, |
| 36 | + "declaration-block-no-duplicate-properties": true, |
| 37 | + "block-no-empty": true, |
| 38 | + "no-descending-specificity": true, |
| 39 | + "no-duplicate-at-import-rules": true, |
| 40 | + "at-rule-no-unknown": [ |
| 41 | + true, |
| 42 | + { |
| 43 | + "ignoreAtRules": [ |
| 44 | + "tailwind", |
| 45 | + "apply", |
| 46 | + "layer", |
| 47 | + "config", |
| 48 | + "theme", |
| 49 | + "reference", |
| 50 | + "plugin", |
| 51 | + "custom-variant", |
| 52 | + "utility" |
| 53 | + ] |
| 54 | + } |
| 55 | + ], |
| 56 | + "function-no-unknown": [ |
| 57 | + true, |
| 58 | + { |
| 59 | + "ignoreFunctions": [ |
| 60 | + "theme" |
| 61 | + ] |
| 62 | + } |
| 63 | + ] |
| 64 | + }, |
| 65 | + "ignoreFiles": [ |
| 66 | + "node_modules/**", |
| 67 | + "dist/**", |
| 68 | + "playwright-report/**", |
| 69 | + "public/**", |
| 70 | + "src/lib/litegraph/**" |
| 71 | + ], |
| 72 | + "files": ["**/*.css", "**/*.vue"] |
| 73 | +} |
0 commit comments