"markdownDescription":"Enable class name completions when using Emmet-style syntax, for example `div.bg-red-500.uppercase`"
},
"tailwindCSS.includeLanguages":{
"type":"object",
"additionalProperties":{
"type":"string"
},
"default":{},
"markdownDescription":"Enable features in languages that are not supported by default. Add a mapping here between the new language and an already supported language.\n E.g.: `{\"plaintext\": \"html\"}`"
},
"tailwindCSS.colorDecorators":{
"type":"string",
"enum":[
"inherit",
"on",
"off"
],
"markdownEnumDescriptions":[
"Color decorators are rendered if `editor.colorDecorators` is enabled.",
"Color decorators are rendered.",
"Color decorators are not rendered."
],
"default":"inherit",
"markdownDescription":"Controls whether the editor should render inline color decorators for Tailwind CSS classes and helper functions.",
"scope":"language-overridable"
},
"tailwindCSS.validate":{
"type":"boolean",
"default":true,
"markdownDescription":"Enable linting. Rules can be configured individually using the `tailwindcss.lint.*` settings",
"scope":"language-overridable"
},
"tailwindCSS.lint.cssConflict":{
"type":"string",
"enum":[
"ignore",
"warning",
"error"
],
"default":"warning",
"markdownDescription":"Class names on the same HTML element which apply the same CSS property or properties",
"scope":"language-overridable"
},
"tailwindCSS.lint.invalidApply":{
"type":"string",
"enum":[
"ignore",
"warning",
"error"
],
"default":"error",
"markdownDescription":"Unsupported use of the [`@apply` directive](https://tailwindcss.com/docs/functions-and-directives/#apply)",
"scope":"language-overridable"
},
"tailwindCSS.lint.invalidScreen":{
"type":"string",
"enum":[
"ignore",
"warning",
"error"
],
"default":"error",
"markdownDescription":"Unknown screen name used with the [`@screen` directive](https://tailwindcss.com/docs/functions-and-directives/#screen)",
"scope":"language-overridable"
},
"tailwindCSS.lint.invalidVariant":{
"type":"string",
"enum":[
"ignore",
"warning",
"error"
],
"default":"error",
"markdownDescription":"Unknown variant name used with the [`@variants` directive](https://tailwindcss.com/docs/functions-and-directives/#variants)",
"scope":"language-overridable"
},
"tailwindCSS.lint.invalidConfigPath":{
"type":"string",
"enum":[
"ignore",
"warning",
"error"
],
"default":"error",
"markdownDescription":"Unknown or invalid path used with the [`theme` helper](https://tailwindcss.com/docs/functions-and-directives/#theme)",
"scope":"language-overridable"
},
"tailwindCSS.lint.invalidTailwindDirective":{
"type":"string",
"enum":[
"ignore",
"warning",
"error"
],
"default":"error",
"markdownDescription":"Unknown value used with the [`@tailwind` directive](https://tailwindcss.com/docs/functions-and-directives/#tailwind)",
"markdownDescription":"Show `px` equivalents for `rem` CSS values."
},
"tailwindCSS.rootFontSize":{
"type":"number",
"default":16,
"markdownDescription":"Root font size in pixels. Used to convert `rem` CSS values to their `px` equivalents. See `#tailwindCSS.showPixelEquivalents#`."