.stylelintrc.cjs 395 B

1234567891011121314151617
  1. module.exports = {
  2. extends: [
  3. 'stylelint-config-standard',
  4. 'stylelint-config-rational-order',
  5. 'stylelint-config-recommended-vue',
  6. ],
  7. plugins: ['stylelint-order'],
  8. rules: {
  9. 'at-rule-no-unknown': [
  10. true,
  11. {
  12. ignoreAtRules: ['extends', 'tailwind', 'apply', 'variants', 'responsive', 'screen'],
  13. },
  14. ],
  15. 'no-descending-specificity': null,
  16. },
  17. };