Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
fix(solidtity/extension): fixed name of the format command
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSwapFeeder authored and 0xmemorygrinder committed Feb 22, 2024
1 parent 233ed30 commit e84ce28
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
5 changes: 5 additions & 0 deletions toolchains/solidity/extension/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": ["dbaeumer.vscode-eslint", "amodio.tsl-problem-matcher", "ms-vscode.extension-test-runner"]
}
4 changes: 4 additions & 0 deletions toolchains/solidity/extension/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// A launch configuration that compiles the extension and then opens it inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
Expand Down
13 changes: 13 additions & 0 deletions toolchains/solidity/extension/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false, // set this to true to hide the "out" folder with the compiled JS files
"dist": false // set this to true to hide the "dist" folder with the compiled JS files
},
"search.exclude": {
"out": true, // set this to false to include "out" folder in search results
"dist": true // set this to false to include "dist" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
}
6 changes: 4 additions & 2 deletions toolchains/solidity/extension/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
Expand All @@ -14,7 +16,7 @@
"kind": "build",
"isDefault": true
}
},
},|
{
"type": "npm",
"script": "watch-tests",
Expand All @@ -35,4 +37,4 @@
"problemMatcher": []
}
]
}
}
2 changes: 1 addition & 1 deletion toolchains/solidity/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"explorer/context": [
{
"when": "resourceLangId == solidity",
"command": "osmium.lint-sol-file",
"command": "osmium.format-sol-file",
"group": "7_modification"
},
{
Expand Down

0 comments on commit e84ce28

Please sign in to comment.