-
Notifications
You must be signed in to change notification settings - Fork 1
/
root.code-workspace
51 lines (51 loc) · 1.41 KB
/
root.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
{
"extensions": {
"recommendations": [
"EditorConfig.EditorConfig",
"Orta.vscode-jest",
"VisualStudioExptTeam.vscodeintellicode",
"arcanis.vscode-zipfs",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"esbenp.prettier-vscode",
"hediet.realtime-debugging",
"ms-playwright.playwright",
"rbuckton.deoptexplorer-vscode",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker",
"vscode-icons-team.vscode-icons",
"yoavbls.pretty-ts-errors"
]
},
"folders": [
{
"path": "."
}
],
"settings": {
"[graphql][html][javascript][javascriptreact][json][markdown][typescript][typescriptreact][yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"editor.guides.bracketPairs": true,
"editor.linkedEditing": true,
"files.autoSave": "onFocusChange",
"files.defaultLanguage": "${activeEditorLanguage}",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"git.enableSmartCommit": true,
"search.exclude": {
"**/*.snap": true,
"**/build": true,
"**/coverage": true,
"**/dist": true,
"**/node_modules": true,
".pnp.cjs": true,
".yarn": true,
"yarn.lock": true
},
"typescript.tsserver.useSyntaxServer": "auto",
"yaml.schemaStore.enable": true
}
}