export default { extends: [ 'stylelint-config-standard', 'stylelint-config-html', // For .astro files 'stylelint-config-clean-order' ], overrides: [ { files: ['**/*.astro'], customSyntax: 'postcss-html', }, ], rules: { // Allow unknown at-rules for PostCSS utilities 'at-rule-no-unknown': [ true, { ignoreAtRules: ['util', 'apply'], // For postcss-utilities }, ], // Allow CSS-in-JS style nesting 'no-descending-specificity': null, }, }