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
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,10 @@ This setting allows you to add additional language support. The key of each entr
62
62
}
63
63
```
64
64
65
+
### `tailwindCSS.files.exclude`
66
+
67
+
Configure glob patterns to exclude from all IntelliSense features. Inherits all glob patterns from the `files.exclude` setting. **Default: ["\*\*/.git/\*\*", "\*\*/node_modules/\*\*", "\*\*/.hg/\*\*"]**
68
+
65
69
### `tailwindCSS.emmetCompletions`
66
70
67
71
Enable completions when using [Emmet](https://emmet.io/)-style syntax, for example `div.bg-red-500.uppercase`. **Default: `false`**
Copy file name to clipboardExpand all lines: packages/vscode-tailwindcss/package.json
+12
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,18 @@
119
119
"default": {},
120
120
"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\"}`"
121
121
},
122
+
"tailwindCSS.files.exclude": {
123
+
"type": "array",
124
+
"items": {
125
+
"type": "string"
126
+
},
127
+
"default": [
128
+
"**/.git/**",
129
+
"**/node_modules/**",
130
+
"**/.hg/**"
131
+
],
132
+
"markdownDescription": "Configure glob patterns to exclude from all IntelliSense features. Inherits all glob patterns from the `#files.exclude#` setting."
0 commit comments