Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/docker/package.json
3311 views
1
{
2
"name": "docker",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
},
13
"categories": ["Programming Languages"],
14
"contributes": {
15
"languages": [
16
{
17
"id": "dockerfile",
18
"extensions": [
19
".dockerfile",
20
".containerfile"
21
],
22
"filenames": [
23
"Dockerfile",
24
"Containerfile"
25
],
26
"filenamePatterns": [
27
"Dockerfile.*",
28
"Containerfile.*"
29
],
30
"aliases": [
31
"Docker",
32
"Dockerfile",
33
"Containerfile"
34
],
35
"configuration": "./language-configuration.json"
36
}
37
],
38
"grammars": [
39
{
40
"language": "dockerfile",
41
"scopeName": "source.dockerfile",
42
"path": "./syntaxes/docker.tmLanguage.json"
43
}
44
],
45
"configurationDefaults": {
46
"[dockerfile]": {
47
"editor.quickSuggestions": {
48
"strings": true
49
}
50
}
51
}
52
},
53
"repository": {
54
"type": "git",
55
"url": "https://github.com/microsoft/vscode.git"
56
}
57
}
58
59