master
 1/** @type {import('stylelint').Config} */
 2export default {
 3  extends: ['stylelint-config-html/astro'],
 4  rules: {
 5    'at-rule-no-unknown': [
 6      true,
 7      {
 8        ignoreAtRules: [
 9          // Tailwind CSS
10          'theme',
11          'source',
12          'utility',
13          'variant',
14          'custom-variant',
15          'apply',
16          'layer',
17          'config',
18          'plugin',
19          'reference',
20        ],
21      },
22    ],
23    'function-no-unknown': [
24      true,
25      {
26        ignoreFunctions: ['theme'],
27      },
28    ],
29  },
30};