Files
blog_astro/.stylelintrc.js
Dave 5bdf09b9e1
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 23s
Added a baseline style for most elements
2025-09-03 16:16:43 +02:00

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,
},
}