forked from streetsidesoftware/cspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.code-workspace
121 lines (121 loc) · 3.25 KB
/
cspell.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"folders": [
{
"name": "cspell-monorepo",
"path": "."
},
{
"path": "docs"
},
{
"path": "integration-tests"
},
{
"path": "packages/cspell-bundled-dicts"
},
{
"path": "packages/cspell-config-lib"
},
{
"path": "packages/cspell-dynamic-loader"
},
{
"path": "packages/cspell-eslint-plugin"
},
{
"path": "packages/cspell-gitignore"
},
{
"path": "packages/cspell-glob"
},
{
"path": "packages/cspell-grammar"
},
{
"path": "packages/cspell-io"
},
{
"path": "packages/cspell-json-reporter"
},
{
"path": "packages/cspell-lib"
},
{
"path": "packages/cspell-pipe"
},
{
"path": "packages/cspell-service-bus"
},
{
"path": "packages/cspell-tools"
},
{
"path": "packages/cspell-trie-lib"
},
{
"path": "packages/cspell-trie"
},
{
"path": "packages/cspell-trie2-lib"
},
{
"path": "packages/cspell-types"
},
{
"path": "packages/cspell"
},
{
"path": "packages/hunspell-reader"
},
{
"path": "rfc"
},
{
"path": "website"
}
],
"launch": {
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Test: Jest current-file",
"program": "${fileWorkspaceFolder}/node_modules/.bin/jest",
"cwd": "${fileWorkspaceFolder}",
"args": ["--runInBand", "${fileBasename}"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${fileWorkspaceFolder}/node_modules/jest/bin/jest"
}
},
{
"type": "node",
"request": "launch",
"name": "Test: Jest Entire Folder",
"program": "${fileWorkspaceFolder}/node_modules/.bin/jest",
"cwd": "${fileWorkspaceFolder}",
"args": ["--runInBand"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${fileWorkspaceFolder}/node_modules/jest/bin/jest"
}
}
],
"compounds": []
},
"settings": {
"typescript.tsdk": "cspell-monorepo/node_modules/typescript/lib",
"cSpell.customDictionaries": {
"workspace": true
},
"cSpell.enableFiletypes": ["shellscript"],
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"extensions": {
"recommendations": ["streetsidesoftware.code-spell-checker", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
}
}