-
Notifications
You must be signed in to change notification settings - Fork 5
/
recommended.code-workspace
82 lines (82 loc) · 2.17 KB
/
recommended.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"folders": [
{
"path": "./"
}
],
"settings": {
// https://vscode.readthedocs.io/en/latest/getstarted/settings/
"window.title": "${activeEditorShort}${separator}commercetools-docs-kit (workspace)",
"npm.packageManager": "yarn",
"eslint.packageManager": "yarn",
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/public": true,
"**/.cache": true,
"**/.yarn": true,
"**/*.snap": true,
"**/*.svg": true
},
"javascript.validate.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact"
],
"vale.core.useCLI": true,
"vale.valeCLI.path": "${workspaceFolder}/node_modules/.bin/commercetools-vale-bin",
"vale.valeCLI.config": "${workspaceFolder}/node_modules/@commercetools-docs/writing-style/.vale.ini",
"spellright.notificationClass": "warning",
"spellright.language": [
"en"
],
"spellright.documentTypes": [
"plaintext",
"markdown",
"mdx",
"yaml"
],
"spellright.configurationScope": "user",
"typescript.tsdk": "node_modules/typescript/lib"
},
"extensions": {
"recommendations": [
"ban.spellright",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"christian-kohler.path-intellisense",
"kumar-harsh.graphql-for-vscode",
"ms-vscode.vscode-typescript-tslint-plugin",
"redhat.vscode-yaml",
"silvenon.mdx",
"jounqin.vscode-mdx",
"errata-ai.vale-server",
"bierner.markdown-mermaid",
"bpruitt-goddard.mermaid-markdown-syntax-highlighting"
]
},
"launch": {
"configurations": [
{
"name": "docs-smoke-test (nodejs develop)",
"type": "pwa-node",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceRoot}/node_modules/.bin/gatsby",
"cwd": "${workspaceRoot}/websites/docs-smoke-test",
"args": [
"develop"
],
"runtimeArgs": [
"--nolazy"
],
"console": "integratedTerminal",
"stopOnEntry": false,
}
],
"compounds": []
}
}