123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- module.exports = {
- customSyntax: 'postcss-styled-syntax',
- extends: ['stylelint-config-recommended'],
- rules: {
- 'declaration-colon-newline-after': null,
-
- 'declaration-bang-space-before': null,
-
- 'unit-no-unknown': null,
- 'font-family-no-missing-generic-family-keyword': null,
- 'media-feature-name-no-unknown': null,
-
- 'no-descending-specificity': null,
-
- 'function-no-unknown': null,
- 'property-no-unknown': [
- true,
- {
-
- ignoreProperties: ['origin-x', 'origin-y'],
- },
- ],
-
- 'no-empty-source': null,
- 'property-disallowed-list': [
-
- 'grid-gap',
-
- {
- message: 'Disallowed property. (See `stylelint.config.js` as to why)',
- },
- ],
-
- 'media-query-no-invalid': null,
- },
- };
|