Added a baseline style for most elements
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 23s

This commit is contained in:
2025-09-03 16:16:43 +02:00
parent e98b930a0c
commit 5bdf09b9e1
13 changed files with 1371 additions and 57 deletions

24
.stylelintrc.js Normal file
View File

@@ -0,0 +1,24 @@
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,
},
}