We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 755eb5f commit 528fb6cCopy full SHA for 528fb6c
packages/tailwindcss-language-service/src/diagnostics/getCssConflictDiagnostics.ts
@@ -33,9 +33,9 @@ function getRuleProperties(rule: Rule): string[] {
33
rule.walkDecls(({ prop }) => {
34
properties.push(prop)
35
})
36
- if (properties.findIndex((p) => !isCustomProperty(p)) > -1) {
37
- properties = properties.filter((p) => !isCustomProperty(p))
38
- }
+ // if (properties.findIndex((p) => !isCustomProperty(p)) > -1) {
+ // properties = properties.filter((p) => !isCustomProperty(p))
+ // }
39
return properties
40
}
41
0 commit comments