-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcreaton.code-workspace.default
60 lines (60 loc) · 1.85 KB
/
creaton.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
57
58
59
60
{
"folders": [
{
"path": "contracts"
},
{
"path": "common-lib"
},
{
"path": "subgraph"
},
{
"path": "web"
},
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"[solidity]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"solidity.linter": "solhint",
"solidity.enableLocalNodeCompiler": false,
"solidity.compileUsingRemoteVersion": "0.7.1+commit.f4a555be.Emscripten.clang",
"solidity.packageDefaultDependenciesContractsDirectory": "contracts/src",
"solidity.packageDefaultDependenciesDirectory": "contracts/node_modules",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[json]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {}
},
// ---------------------------------------------------------------------------------------------------------------------------------------------
// 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"
},
"mochaExplorer.require": ["ts-node/register/transpile-only"]
// ----------------------------------------------------------------------------------------------------------------------------------------------
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"hbenl.vscode-mocha-test-adapter",
"juanblanco.solidity",
"gruntfuggly.todo-tree",
"svelte.svelte-vscode"
],
"unwantedRecommendations": []
}
}