AstralHalo/stylelint.config.mjs
HPCesia 8a8bf19e35 build(deps): upgrade TailwindCSS to v4
- 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.
2025-02-07 21:39:05 +08:00

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'],
},
],
},
};