12345678910111213141516171819202122232425262728293031323334353637383940 |
- module.exports = {
- customSyntax: 'postcss-styled-syntax',
- extends: ['stylelint-config-recommended'],
- rules: {
-
- '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,
- },
- };
|