Home

tailwind-ctp-intellisense @master - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tree log patch
update readme
Brad Cornes <bradlc41@gmail.com>
4 years ago
1 changed files, 17 additions(+), 1 deletions(-)
M packages/tailwindcss-intellisense/README.md -> packages/tailwindcss-intellisense/README.md
diff --git a/packages/tailwindcss-intellisense/README.md b/packages/tailwindcss-intellisense/README.md
index 075e996a09c9d8da36f00c7783b8c672ea7ddb86..befa11d7efe99140a21308e9add02c7538e3468d 100644
--- a/packages/tailwindcss-intellisense/README.md
+++ b/packages/tailwindcss-intellisense/README.md
@@ -32,7 +32,23 @@ ### CSS Syntax Highlighting
 
 Provides syntax definitions so that Tailwind features are highlighted correctly.
 
-## Settings
+## Recommended VS Code Settings
+
+VS Code has built-it CSS validation which may display errors when using Tailwind-specific syntax, such as `@apply`. You can disable this with the `css.validate` setting:
+
+```
+"css.validate": false
+```
+
+By default VS Code will not trigger completions when editing "string" content, for example within HTML attribute values. Updating the `editor.quickSuggestions` setting may improve your experience, particularly when editing Tailwind classes in HTML files:
+
+```
+"editor.quickSuggestions": {
+  "strings": true
+}
+```
+
+## Extension Settings
 
 ### `tailwindCSS.includeLanguages`