export default { extends: [ 'stylelint-config-standard', 'stylelint-config-html', 'stylelint-config-clean-order' ], overrides: [ { files: ['**/*.{js,jsx,ts,tsx}'], customSyntax: 'postcss-html', }, ], rules: { 'at-rule-no-unknown': [ true, { ignoreAtRules: ['util', 'apply'], }, ], 'no-descending-specificity': null, }, }