File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: Release Extension
55
66on :
77 push :
8- branches : [" main" ]
8+ branches : [' main' ]
99
1010jobs :
1111 release :
@@ -24,16 +24,16 @@ jobs:
2424 - uses : actions/setup-node@v3
2525 with :
2626 node-version : 18
27- cache : " npm"
27+ cache : ' npm'
2828
29- - name : " Install dependencies"
29+ - name : ' Install dependencies'
3030 run : npm ci
3131
32- - name : " Build syntaxes, client and server. "
32+ - name : ' Build syntaxes, client and server. '
3333 run : npx nx run-many --target=build
3434
35- - name : " Package extension"
35+ - name : ' Package extension'
3636 run : npx vsce package
3737
38- - name : " Semantic Release"
38+ - name : ' Semantic Release'
3939 run : npx semantic-release
Original file line number Diff line number Diff line change 11{
2- "comments" : {
3- // symbol used for single line comment. Remove this entry if your language does not support line comments
4- "lineComment" : " //" ,
5- // symbols used for start and end a block comment. Remove this entry if your language does not support block comments
6- "blockComment" : [
7- " /*" ,
8- " */"
9- ]
10- },
11- // symbols used as brackets
12- "brackets" : [
13- [
14- " {" ,
15- " }"
16- ],
17- [
18- " [" ,
19- " ]"
20- ],
21- [
22- " (" ,
23- " )"
24- ]
25- ],
26- // symbols that are auto closed when typing
27- "autoClosingPairs" : [
28- [
29- " {" ,
30- " }"
31- ],
32- [
33- " [" ,
34- " ]"
35- ],
36- [
37- " (" ,
38- " )"
39- ],
40- [
41- " \" " ,
42- " \" "
43- ],
44- [
45- " '" ,
46- " '"
47- ],
48- [
49- " /*" ,
50- " */"
51- ]
52- ],
53- // symbols that can be used to surround a selection
54- "surroundingPairs" : [
55- [
56- " {" ,
57- " }"
58- ],
59- [
60- " [" ,
61- " ]"
62- ],
63- [
64- " (" ,
65- " )"
66- ],
67- [
68- " \" " ,
69- " \" "
70- ],
71- [
72- " '" ,
73- " '"
74- ]
75- ]
76- }
2+ "comments" : {
3+ // symbol used for single line comment. Remove this entry if your language does not support line comments
4+ "lineComment" : " //" ,
5+ // symbols used for start and end a block comment. Remove this entry if your language does not support block comments
6+ "blockComment" : [" /*" , " */" ]
7+ },
8+ // symbols used as brackets
9+ "brackets" : [
10+ [" {" , " }" ],
11+ [" [" , " ]" ],
12+ [" (" , " )" ]
13+ ],
14+ // symbols that are auto closed when typing
15+ "autoClosingPairs" : [
16+ [" {" , " }" ],
17+ [" [" , " ]" ],
18+ [" (" , " )" ],
19+ [" \" " , " \" " ],
20+ [" '" , " '" ],
21+ [" /*" , " */" ]
22+ ],
23+ // symbols that can be used to surround a selection
24+ "surroundingPairs" : [
25+ [" {" , " }" ],
26+ [" [" , " ]" ],
27+ [" (" , " )" ],
28+ [" \" " , " \" " ],
29+ [" '" , " '" ]
30+ ]
31+ }
You can’t perform that action at this time.
0 commit comments