mirror of
https://codeberg.org/HPCesia/AstralHalo.git
synced 2025-04-06 17:14:27 +08:00
- Upgrade TailwindCSS to v4 - Upgrade daisyUI to v5 beta. - Delete the PostCSS TailwindCSS compatibility layer. - Delete Sass dependency because TailwindCSS v4 will generate nested CSS, so we don't need Sass anymore.
31 lines
559 B
JavaScript
31 lines
559 B
JavaScript
/** @type {import('stylelint').Config} */
|
|
export default {
|
|
extends: ['stylelint-config-html/astro'],
|
|
rules: {
|
|
'at-rule-no-unknown': [
|
|
true,
|
|
{
|
|
ignoreAtRules: [
|
|
// Tailwind CSS
|
|
'theme',
|
|
'source',
|
|
'utility',
|
|
'variant',
|
|
'custom-variant',
|
|
'apply',
|
|
'layer',
|
|
'config',
|
|
'plugin',
|
|
'reference',
|
|
],
|
|
},
|
|
],
|
|
'function-no-unknown': [
|
|
true,
|
|
{
|
|
ignoreFunctions: ['theme'],
|
|
},
|
|
],
|
|
},
|
|
};
|