-
Notifications
You must be signed in to change notification settings - Fork 0
/
recommended.code-workspace
54 lines (54 loc) · 1.2 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
{
"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": {
"*.mdx": "markdown"
},
"javascript.validate.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact"
],
"spellright.notificationClass": "warning",
"spellright.language": [
"it"
],
"spellright.documentTypes": [
"plaintext",
"markdown",
"mdx",
"yaml"
],
"spellright.configurationScope": "user"
},
"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"
]
}
}