File tree 3 files changed +32
-2
lines changed
3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 1
1
.vscode
2
2
.vscode-test
3
3
node_modules
4
+ __mocks__
4
5
out /
5
6
src /
6
7
scripts /
8
+ azure-pipelines /
7
9
.gitignore
8
10
package-lock.json
9
11
tsconfig.json
10
12
tslint.json
11
13
webpack.config.js
12
- azure-pipelines /
13
14
jest.config.js
14
15
** /* .map
Original file line number Diff line number Diff line change 21
21
"homepage" : " https://github.com/Microsoft/vscode-dtdl/blob/master/README.md" ,
22
22
"categories" : [
23
23
" Azure" ,
24
- " Other "
24
+ " Snippets "
25
25
],
26
26
"activationEvents" : [
27
27
" onCommand:vscode-dtdl.createInterface" ,
57
57
"scopeName" : " text.channel.colorized" ,
58
58
"path" : " ./syntaxes/colorized.channel.tmLanguage"
59
59
}
60
+ ],
61
+ "snippets" : [
62
+ {
63
+ "language" : " json" ,
64
+ "path" : " ./snippets/snippets.json"
65
+ }
60
66
]
61
67
},
62
68
"scripts" : {
Original file line number Diff line number Diff line change
1
+ {
2
+ "Add DTDL Property" : {
3
+ "prefix" : " dtp" ,
4
+ "body" : [
5
+ " {\n\t\" @type\" : \" Property\" ,\n\t\" name\" : \" $1\" ,\n\t\" schema\" : $2\n }"
6
+ ],
7
+ "description" : " Adds a DTDL property"
8
+ },
9
+ "Add DTDL Telemetry" : {
10
+ "prefix" : " dtt" ,
11
+ "body" : [
12
+ " {\n\t\" @type\" : \" Telemetry\" ,\n\t\" name\" : \" $1\" ,\n\t\" schema\" : $2\n }"
13
+ ],
14
+ "description" : " Adds a DTDL Telemetry"
15
+ },
16
+ "Add DTDL Command" : {
17
+ "prefix" : " dtc" ,
18
+ "body" : [
19
+ " {\n\t\" @type\" : \" Command\" ,\n\t\" name\" : \" $1\" ,\n\t\" schema\" : $2\n }"
20
+ ],
21
+ "description" : " Adds a DTDL Command"
22
+ }
23
+ }
You can’t perform that action at this time.
0 commit comments