File tree Expand file tree Collapse file tree 3 files changed +157
-202
lines changed Expand file tree Collapse file tree 3 files changed +157
-202
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: Release Extension
5
5
6
6
on :
7
7
push :
8
- branches : [" main" ]
8
+ branches : [' main' ]
9
9
10
10
jobs :
11
11
release :
@@ -24,16 +24,16 @@ jobs:
24
24
- uses : actions/setup-node@v3
25
25
with :
26
26
node-version : 18
27
- cache : " npm"
27
+ cache : ' npm'
28
28
29
- - name : " Install dependencies"
29
+ - name : ' Install dependencies'
30
30
run : npm ci
31
31
32
- - name : " Build syntaxes, client and server. "
32
+ - name : ' Build syntaxes, client and server. '
33
33
run : npx nx run-many --target=build
34
34
35
- - name : " Package extension"
35
+ - name : ' Package extension'
36
36
run : npx vsce package
37
37
38
- - name : " Semantic Release"
38
+ - name : ' Semantic Release'
39
39
run : npx semantic-release
Original file line number Diff line number Diff line change 1
1
{
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