12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- module.exports = {
- extends: '@wagtail/stylelint-config-wagtail',
- rules: {
- 'scss/at-rule-no-unknown': [
- true,
- {
- ignoreAtRules: [
- 'tailwind',
- 'apply',
- 'variants',
- 'responsive',
- 'screen',
- 'layer',
- ],
- },
- ],
- 'no-invalid-position-at-import-rule': [
- true,
- {
- ignoreAtRules: ['tailwind', 'use'],
- },
- ],
-
- 'no-descending-specificity': null,
-
- 'declaration-property-value-allowed-list': {
-
-
- 'text-align': ['start', 'end', 'center'],
- },
-
- 'scale-unlimited/declaration-strict-value': [
- [
-
- '/color/',
- 'fill',
- 'stroke',
-
- 'font-family',
-
-
-
-
-
-
-
-
- ],
- {
- ignoreValues: [
- 'currentColor',
- 'inherit',
- 'initial',
- 'none',
- 'unset',
- 'transparent',
-
-
- 'Canvas',
- 'CanvasText',
- 'LinkText',
- 'VisitedText',
- 'ActiveText',
- 'ButtonFace',
- 'ButtonText',
- 'ButtonBorder',
- 'Field',
- 'FieldText',
- 'Highlight',
- 'HighlightText',
- 'SelectedItem',
- 'SelectedItemText',
- 'Mark',
- 'MarkText',
- 'GrayText',
- 'AccentColor',
- 'AccentColorText',
- ],
- },
- ],
- },
- };
|