-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
cspell.code-workspace
78 lines (78 loc) · 2.86 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
{
"folders": [
{
"name": "cspell-monorepo",
"path": "."
},
{ "path": "docs" },
{ "path": "packages/dynamic-import" },
{ "path": "integration-tests" },
{ "path": "packages/cspell-bundled-dicts" },
{ "path": "packages/cspell-config-lib" },
{ "path": "packages/cspell-dictionary" },
{ "path": "packages/cspell-eslint-plugin" },
{ "path": "packages/cspell-filetypes" },
{ "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-normalize-json" },
{ "path": "packages/cspell-pipe" },
{ "path": "packages/cspell-resolver" },
{ "path": "packages/cspell-service-bus" },
{ "path": "packages/cspell-strong-weak-map" },
{ "path": "packages/cspell-tools" },
{ "path": "packages/cspell-trie-lib" },
{ "path": "packages/cspell-trie" },
{ "path": "packages/cspell-types" },
{ "path": "packages/cspell-url" },
{ "path": "packages/cspell" },
{ "path": "packages/hunspell-reader" },
{ "path": "test-packages" },
{ "path": "rfc" },
{ "path": "website" }
],
"launch": {
"configurations": [
{
"type": "node",
"request": "launch",
"name": "ViTest: Current Test File",
"autoAttachChildProcesses": true,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
"program": "${workspaceRoot:cspell-monorepo}/node_modules/vitest/vitest.mjs",
"env": {
"NODE_OPTIONS": "--enable-source-maps"
},
"args": [
"run",
"--testTimeout=600000",
"--hideSkippedTests",
"--reporter=basic",
"--no-file-parallelism",
"${relativeFile}"
],
"cwd": "${fileWorkspaceFolder}",
"smartStep": true,
"console": "integratedTerminal"
}
],
"compounds": []
},
"settings": {
"typescript.tsdk": "cspell-monorepo/node_modules/typescript/lib",
"cSpell.customDictionaries": {
"workspace": true
},
"cSpell.enableFiletypes": ["shellscript"],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"extensions": {
"recommendations": ["streetsidesoftware.code-spell-checker", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
}
}