.stylelintrc.cjs 415 B

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