123456789101112131415161718192021222324 |
- module.exports = {
- processors: ['stylelint-processor-styled-components'],
- extends: [
- 'stylelint-config-recommended',
- 'stylelint-config-styled-components',
- 'stylelint-config-prettier',
- ],
- rules: {
- 'declaration-colon-newline-after': null,
-
- 'declaration-bang-space-before': null,
-
- 'unit-no-unknown': null,
- 'font-family-no-missing-generic-family-keyword': null,
-
- 'no-descending-specificity': null,
- 'property-no-unknown': [true, {ignoreProperties: [/\$dummyValue/]}],
- },
- };
|