All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 23s
24 lines
526 B
JavaScript
24 lines
526 B
JavaScript
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,
|
|
},
|
|
} |