https://git.jolheiser.com/tailwind-ctp-intellisense.git
View in Visual Studio Code Marketplace →
In order for the extension to activate you must have tailwindcss installed and a Tailwind config file named tailwind.config.js or tailwind.js in your workspace.
Autocomplete
Intelligent suggestions for class names, CSS directives, and the theme helper
Hover Preview
See the complete CSS for a Tailwind class name by hovering over it
Linting
Highlights errors and potential bugs in your HTML and CSS files
CSS Syntax Highlighting
Provides syntax definitions so that use of Tailwind features doesn’t mess up your syntax highlighting
tailwindCSS.includeLanguagesThis setting allows you to add additional language support. The key of each entry is the new language ID and the value is any one of the extensions built-in languages, depending on how you want the new language to be treated (e.g. html, css, or javascript):
{
"tailwindCSS.includeLanguages": {
"plaintext": "html"
}
}
tailwindCSS.emmetCompletionsEnable completions when using Emmet-style syntax, for example div.bg-red-500.uppercase. Default: false
{
"tailwindCSS.emmetCompletions": true
}
tailwindCSS.validateEnable linting. Rules can be configured individually using the tailwindcss.lint settings:
ignore: disable lint rule entirelywarning: rule violations will be considered "warnings," typically represented by a yellow underlineerror: rule violations will be considered "errors," typically represented by a red underlinetailwindCSS.lint.invalidScreenUnknown screen name used with the @screen directive. Default: error
tailwindCSS.lint.invalidVariantUnknown variant name used with the @variants directive. Default: error
tailwindCSS.lint.invalidTailwindDirectiveUnknown value used with the @tailwind directive. Default: error
tailwindCSS.lint.invalidApplyUnsupported use of the @apply directive. For example class names which contain pseudo selectors cannot currently be used with @apply. Default: error
tailwindCSS.lint.invalidConfigPathUnknown or invalid path used with the theme helper. Default: error
tailwindCSS.lint.cssPropertyConflictClass names on the same HTML element which apply the same CSS property or properties. Default: warning