-
Notifications
You must be signed in to change notification settings - Fork 6
/
python-monorepo.code-workspace
91 lines (91 loc) · 2.15 KB
/
python-monorepo.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
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "docs",
"path": "docs"
},
{
"name": "examples",
"path": "examples"
},
{
"name": "polywrap",
"path": "packages/polywrap"
},
{
"name": "polywrap-client",
"path": "packages/polywrap-client"
},
{
"name": "polywrap-client-config-builder",
"path": "packages/polywrap-client-config-builder"
},
{
"name": "polywrap-core",
"path": "packages/polywrap-core"
},
{
"name": "polywrap-msgpack",
"path": "packages/polywrap-msgpack"
},
{
"name": "polywrap-uri-resolvers",
"path": "packages/polywrap-uri-resolvers"
},
{
"name": "polywrap-wasm",
"path": "packages/polywrap-wasm"
},
{
"name": "polywrap-manifest",
"path": "packages/polywrap-manifest"
},
{
"name": "polywrap-plugin",
"path": "packages/polywrap-plugin"
},
{
"name": "polywrap-test-cases",
"path": "packages/polywrap-test-cases"
},
{
"name": "polywrap-fs-plugin",
"path": "packages/plugins/polywrap-fs-plugin"
},
{
"name": "polywrap-http-plugin",
"path": "packages/plugins/polywrap-http-plugin"
},
{
"name": "polywrap-ethereum-wallet",
"path": "packages/plugins/polywrap-ethereum-wallet"
},
{
"name": "polywrap-sys-config-bundle",
"path": "packages/config-bundles/polywrap-sys-config-bundle"
},
{
"name": "polywrap-web3-config-bundle",
"path": "packages/config-bundles/polywrap-web3-config-bundle"
}
],
"settings": {
"files.exclude": {
"packages/*": true,
"docs/*": true,
"examples/*":true
},
"docify.programmingLanguage": "python",
"docify.style": "Google",
"docify.intelligentDetection": true,
"docify.sidePanelReviewMode": true,
"liveServer.settings.multiRootWorkspaceName": "root",
"docify.commentService.docstringFormat": "Google",
"docify.commentService.sidePanelReviewMode": false,
"docify.translateService.docstringFormat": "Google"
}
}