You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stubs/stylelint.config.js: every Tailwind @apply failed the lint. stylelint-config-standard enables at-rule-prelude-no-invalid, which
cannot parse a utility list (@apply flex gap-2) and reported Invalid prelude … for at-rule "@apply" on each one. The scaffolded config
now ignores @apply for that rule (keeping the upstream media ignore),
like it already does for at-rule-no-unknown and at-rule-no-deprecated.
Existing projects: re-run "Install stubs", or add "at-rule-prelude-no-invalid": [true, { ignoreAtRules: ["media", "apply"] }]
to the rules of your stylelint.config.js by hand.