forked from commercetools/merchant-center-application-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recommended.code-workspace
75 lines (75 loc) · 2.04 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
{
"folders": [
{
"path": "./"
}
],
"settings": {
// https://vscode.readthedocs.io/en/latest/getstarted/settings/
"npm.packageManager": "yarn",
"eslint.packageManager": "yarn",
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/public": true,
"**/.cache": true,
"**/.yarn": true,
"**/*.snap": true,
"**/*.svg": true
},
"files.associations": {
// Spellright does not work on MDX files, so we map those to normal
// markdown files. The only downside so far is no syntax highlighting
// for React components and imports in a MDX file.
"*.mdx": "markdown"
},
"javascript.validate.enable": true,
// Enable editor validation for graphql files
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"graphql"
],
"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": "error",
"spellright.language": [
"en"
],
"spellright.documentTypes": [
"plaintext",
"markdown",
"mdx",
"yaml"
],
"spellright.configurationScope": "user",
"json.schemas": [
{
"fileMatch": [
"/.custom-application-configrc",
"/.custom-application-config.json",
"/custom-application-config.json"
],
"url": "./packages/application-config/schema.json"
}
],
"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",
"testthedocs.vale"
]
}
}