forked from wighawag/jolly-roger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jolly-roger.code-workspace.default
56 lines (56 loc) · 1.94 KB
/
jolly-roger.code-workspace.default
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
{
"folders": [
{
"path": "contracts"
},
{
"path": "common-lib"
},
{
"path": "web"
},
{
"path": "subgraph"
},
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.documentSelectors": ["**/*.sol", "**/*.svelte"], // needed, see https://github.com/sveltejs/prettier-plugin-svelte/issues/155#issuecomment-831166730
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"solidity.linter": "solhint",
"solidity.defaultCompiler": "remote",
"solidity.compileUsingRemoteVersion": "v0.8.9+commit.e5eed63a",
"solidity.packageDefaultDependenciesContractsDirectory": "",
"solidity.enabledAsYouTypeCompilationErrorCheck": true,
"solidity.validationDelay": 1500,
"solidity.packageDefaultDependenciesDirectory": "node_modules",
// ---------------------------------------------------------------------------------------------------------------------------------------------
// The following is required by mocha test explorer vscode plugin: https://marketplace.visualstudio.com/items?itemName=hbenl.vscode-mocha-test-adapter
"mochaExplorer.env": {
"HARDHAT_CONFIG": "hardhat.config.ts",
"HARDHAT_COMPILE": "true",
"MNEMONIC": "test test test test test test test test test test test junk"
},
"mochaExplorer.require": ["ts-node/register/transpile-only"],
"eslint.alwaysShowStatus": true
// ----------------------------------------------------------------------------------------------------------------------------------------------
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"hbenl.vscode-mocha-test-adapter",
"juanblanco.solidity",
"gruntfuggly.todo-tree",
"svelte.svelte-vscode"
],
"unwantedRecommendations": []
}
}