forked from hyperlane-xyz/hyperlane-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mono.code-workspace
52 lines (51 loc) · 1.41 KB
/
mono.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
{
"settings": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.configPath": "../.prettierrc",
"workbench.editor.labelFormat": "medium",
"npm.autoDetect": "on",
"npm.packageManager": "yarn",
"npm.enableRunFromFolder": true,
"npm.scriptExplorerAction": "run",
"npm.fetchOnlinePackageInfo": true,
"scm.diffDecorationsGutterPattern": {
"added": true
},
"files.watcherExclude": {
"**/.git/**": true,
"**/node_modules/*/**": true
},
},
"folders": [
{
"name": "ROOT",
"path": "./"
},
{
"path": "./typescript"
},
{
"path": "./solidity"
},
{
"path": "./rust"
}
],
"extensions": {
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"GitHub.copilot-nightly",
"GitHub.vscode-pull-request-github",
"eamodio.gitlens",
"bierner.github-markdown-preview",
"ms-vsliveshare.vsliveshare-pack",
"esbenp.prettier-vscode"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
}