-
Notifications
You must be signed in to change notification settings - Fork 19
/
workspace.code-workspace
62 lines (62 loc) · 1.33 KB
/
workspace.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
{
"folders": [
{
"path": "packages/common",
},
{
"path": "packages/data-access",
},
{
"path": "packages/badge-api",
},
{
"path": "packages/website-backend",
},
{
"path": "packages/website-frontend",
},
{
"path": "packages/website-contract",
},
{
"path": "packages/e2e",
},
{
"path": "packages/stryker-elements",
},
{
"path": ".",
"name": "root",
},
],
"extensions": {
"recommendations": [
"runem.lit-plugin",
// https://marketplace.visualstudio.com/items?itemName=Azurite.azurite
"Azurite.azurite",
"bierner.lit-html",
],
},
"settings": {
"eslint.rules.customizations": [
{
"rule": "*",
"severity": "warn",
},
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/dist": true,
},
"typescript.tsdk": "stryker-dashboard\\node_modules\\typescript\\lib",
"cSpell.words": ["Clazz", "clippy", "etag", "fdescribe", "gitlab", "Testabilities"],
"task.autoDetect": "off",
"azurite.location": "root/.azurite",
"azureFunctions.showExtensionsCsprojWarning": false,
},
}