| 123456789101112131415161718 |
- // .stylelintrc.cjs
- module.exports = {
- extends: [
- 'stylelint-config-standard',
- 'stylelint-config-rational-order',
- 'stylelint-config-recommended-vue',
- ],
- plugins: ['stylelint-order'],
- rules: {
- 'at-rule-no-unknown': [
- true,
- {
- ignoreAtRules: ['extends', 'tailwind', 'apply', 'variants', 'responsive', 'screen'],
- },
- ],
- 'no-descending-specificity': null,
- },
- };
|