forked from commercetools/merchant-center-application-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recommended.code-workspace
89 lines (89 loc) · 2.24 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
83
84
85
86
87
88
89
{
"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"
],
"stylelint.configOverrides": {
"rules": {
"csstools/value-no-unknown-custom-properties": [
true,
{
"importFrom": [
"node_modules/@commercetools-uikit/design-system/materials/custom-properties.css"
]
}
]
}
},
"vscode-vale.path": "${workspaceFolder}/node_modules/.bin/commercetools-vale",
"vscode-vale.fileExtensions": [
"md",
"markdown",
"mdx"
],
"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"
}
]
},
"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"
]
}
}