The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/mono.code-workspace

52 lines
1.4 KiB

{
"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": []
}
}