You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/vscode-tailwindcss/README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ An alternative to VS Code's built-in CSS language mode which maintains full CSS
38
38
39
39
Use the `files.associations` setting to tell VS Code to always open `.css` files in Tailwind CSS mode:
40
40
41
-
```
41
+
```json
42
42
"files.associations": {
43
43
"*.css": "tailwindcss"
44
44
}
@@ -48,7 +48,7 @@ Use the `files.associations` setting to tell VS Code to always open `.css` files
48
48
49
49
By default VS Code will not trigger completions when editing "string" content, for example within JSX attribute values. Updating the `editor.quickSuggestions` setting may improve your experience:
50
50
51
-
```
51
+
```json
52
52
"editor.quickSuggestions": {
53
53
"strings": "on"
54
54
}
@@ -168,13 +168,13 @@ By default the extension will automatically use the first `tailwind.config.{js,c
168
168
169
169
If your project contains a single Tailwind config file you can specify a string value:
For projects with multiple config files use an object where each key is a config file path and each value is a glob pattern (or array of glob patterns) representing the set of files that the config file applies to:
0 commit comments