-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
stickers.code-workspace
64 lines (64 loc) · 1.69 KB
/
stickers.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
54
55
56
57
58
59
60
61
62
63
64
{
"folders": [
{
"name": "/",
"path": "./"
},
{
"path": "client-config-app"
},
{
"path": "server"
},
{
"path": "image-functions"
},
{
"path": "manifest"
},
{
"path": "website"
},
{
"path": "official-stickers"
},
{
"path": "server.test"
},
{
"path": "server.benchmark"
}
],
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"npm.packageManager": "yarn",
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "boundary",
"editor.tabSize": 4,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [100, 120],
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"eslint.format.enable": true,
"eslint.onIgnoredFiles": "off",
"eslint.options": {
"ignorePath": ".gitignore"
},
"eslint.validate": ["typescriptreact", "typescript", "javascript", "javascriptreact"],
"eslint.packageManager": "yarn",
"json.format.enable": false,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"debug.internalConsoleOptions": "neverOpen"
}
}