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
30
31
|
diff --git a/package.json b/package.json
index 456a3dccab16c2e9747c42d823e08749a55f1c98..2b5746fac07659c552f3a9436395bba7e0932a1d 100755
--- a/package.json
+++ b/package.json
@@ -5,7 +5,7 @@ "description": "Tailwind CSS class name completion",
"preview": true,
"author": "Brad Cornes <hello@bradley.dev>",
"license": "MIT",
- "version": "0.3.0",
+ "version": "0.3.1",
"homepage": "https://github.com/bradlc/vscode-tailwindcss",
"bugs": {
"url": "https://github.com/bradlc/vscode-tailwindcss/issues",
@@ -60,12 +60,15 @@ "properties": {
"tailwindCSS.emmetCompletions": {
"type": "boolean",
"default": false,
- "description": "Enable class name completions when using Emmet-style syntax, for example `div.bg-red-500.uppercase`."
+ "markdownDescription": "Enable class name completions when using Emmet-style syntax, for example `div.bg-red-500.uppercase`"
},
"tailwindCSS.includeLanguages": {
"type": "object",
+ "additionalProperties": {
+ "type": "string"
+ },
"default": {},
- "description": "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\"}`"
+ "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\"}`"
}
}
}
|