update readme

master
Brad Cornes 2020-12-08 16:07:34 +00:00
parent f9865fb219
commit da5bf43ba7
1 changed files with 17 additions and 1 deletions

View File

@ -32,7 +32,23 @@ See the complete CSS for a Tailwind class name by hovering over it.
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`