1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
diff --git a/packages/vscode-tailwindcss/package.json b/packages/vscode-tailwindcss/package.json
index b877a1d640519b104c0c03d0f5472606cccf6993..25444201025178c8b509f2335e69c8e5dac101fc 100755
--- a/packages/vscode-tailwindcss/package.json
+++ b/packages/vscode-tailwindcss/package.json
@@ -160,6 +160,24 @@ "ngClass"
],
"markdownDescription": "The HTML attributes for which to provide class completions, hover previews, linting etc."
},
+ "tailwindCSS.suggestions": {
+ "type": "boolean",
+ "default": true,
+ "markdownDescription": "Enable autocomplete suggestions.",
+ "scope": "language-overridable"
+ },
+ "tailwindCSS.hovers": {
+ "type": "boolean",
+ "default": true,
+ "markdownDescription": "Enable hovers.",
+ "scope": "language-overridable"
+ },
+ "tailwindCSS.codeActions": {
+ "type": "boolean",
+ "default": true,
+ "markdownDescription": "Enable code actions.",
+ "scope": "language-overridable"
+ },
"tailwindCSS.colorDecorators": {
"type": "boolean",
"default": true,
|