-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathextensions.json
28 lines (28 loc) · 1.27 KB
/
extensions.json
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
{
"id": "vscode://schemas/extensions",
"allowComments": true,
"allowTrailingCommas": true,
"type": "object",
"title": "Extensions",
"additionalProperties": false,
"properties": {
"recommendations": {
"type": "array",
"description": "List of extensions which should be recommended for users of this workspace. The identifier of an extension is always '${publisher}.${name}'. For example: 'vscode.csharp'.",
"items": {
"type": "string",
"pattern": "^([a-z0-9A-Z][a-z0-9-A-Z]*)\\.([a-z0-9A-Z][a-z0-9-A-Z]*)$",
"errorMessage": "Expected format '${publisher}.${name}'. Example: 'vscode.csharp'."
}
},
"unwantedRecommendations": {
"type": "array",
"description": "List of extensions recommended by VS Code that should not be recommended for users of this workspace. The identifier of an extension is always '${publisher}.${name}'. For example: 'vscode.csharp'.",
"items": {
"type": "string",
"pattern": "^([a-z0-9A-Z][a-z0-9-A-Z]*)\\.([a-z0-9A-Z][a-z0-9-A-Z]*)$",
"errorMessage": "Expected format '${publisher}.${name}'. Example: 'vscode.csharp'."
}
}
}
}