forked from hyperlane-xyz/hyperlane-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mono.code-workspace
82 lines (81 loc) · 2.37 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
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
{
"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
},
"cSpell.words": [
"hyperlane"
],
"rust-analyzer.linkedProjects": [
"./rust/main/Cargo.toml",
"./rust/sealevel/Cargo.toml",
],
},
"folders": [
{
"name": "ROOT",
"path": "./"
},
{
"path": "./typescript"
},
{
"path": "./solidity"
},
{
"path": "./rust/main"
},
{
"path": "./rust/sealevel"
}
],
"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's copilot (the nightly version)
"GitHub.copilot-nightly",
// Review and manage PRs
"GitHub.vscode-pull-request-github",
// Add useful git-related features
"eamodio.gitlens",
// Show a render preview of markdown files
"bierner.github-markdown-preview",
// Add a live share feature for collaboration
"ms-vsliveshare.vsliveshare-pack",
// Prettier's official extension (code formatting)
"esbenp.prettier-vscode",
// Spell-checker for catching typos
"streetsidesoftware.code-spell-checker",
// ESlint official extension (JS linting)
"dbaeumer.vscode-eslint",
// Markdown linting
"davidanson.vscode-markdownlint",
// Language support for MDX
"unifiedjs.vscode-mdx",
// More readable TS compiler errors
"yoavbls.pretty-ts-errors",
// Yaml language support
"redhat.vscode-yaml",
// Rust language support
"rust-lang.rust-analyzer"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
}