|
| 1 | +{ |
| 2 | + "extends": ["@edx/stylelint-config-edx"], |
| 3 | + "rules": { |
| 4 | + "selector-pseudo-class-no-unknown": [true, { |
| 5 | + "ignorePseudoClasses": ["export"] |
| 6 | + }], |
| 7 | + "unit-no-unknown": [true, { |
| 8 | + "ignoreUnits": ["\\.5"] |
| 9 | + }], |
| 10 | + "property-no-vendor-prefix": [true, { |
| 11 | + "ignoreProperties": ["animation", "filter", "transform", "transition"] |
| 12 | + }], |
| 13 | + "value-no-vendor-prefix": [true, { |
| 14 | + "ignoreValues": ["fill-available"] |
| 15 | + }], |
| 16 | + "function-no-unknown": null, |
| 17 | + "number-leading-zero": "never", |
| 18 | + "no-descending-specificity": null, |
| 19 | + "selector-class-pattern": null, |
| 20 | + "scss/no-global-function-names": null, |
| 21 | + "color-hex-case": "upper", |
| 22 | + "color-hex-length": "long", |
| 23 | + "scss/dollar-variable-empty-line-before": null, |
| 24 | + "scss/dollar-variable-colon-space-after": "at-least-one-space", |
| 25 | + "at-rule-no-unknown": null, |
| 26 | + "scss/at-rule-no-unknown": true, |
| 27 | + "scss/at-import-partial-extension": null, |
| 28 | + "scss/comment-no-empty": null, |
| 29 | + "import-notation": "string", |
| 30 | + "property-no-unknown": [true, { |
| 31 | + "ignoreProperties": ["xs", "sm", "md", "lg", "xl", "xxl"] |
| 32 | + }], |
| 33 | + "alpha-value-notation": "number" |
| 34 | + } |
| 35 | +} |
0 commit comments