Skip to content

Commit 2093edc

Browse files
committed
style: formatting
1 parent fcaee8b commit 2093edc

File tree

3 files changed

+157
-202
lines changed

3 files changed

+157
-202
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Release Extension
55

66
on:
77
push:
8-
branches: ["main"]
8+
branches: ['main']
99

1010
jobs:
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

packages/client/package-lock.json

Lines changed: 121 additions & 121 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 30 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,31 @@
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+
}

0 commit comments

Comments
 (0)