Skip to content

Commit

Permalink
Add VSCode extension skeleton and runtime config schema (#1404)
Browse files Browse the repository at this point in the history
* JSON schema file for runtime configuration validations
* Basic skeleton for vscode extension to implement further JSON schemas and UI elements

Signed-off-by: eravatee <eraraje1997@gmail.com>
  • Loading branch information
eravatee committed Oct 3, 2022
1 parent 64f3868 commit 69000d4
Show file tree
Hide file tree
Showing 10 changed files with 5,003 additions and 0 deletions.
24 changes: 24 additions & 0 deletions packages/caliper-vscode-extension/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
}
2 changes: 2 additions & 0 deletions packages/caliper-vscode-extension/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# caliper-vscode-extension README
This extension is intended to be used as a means to make usage of caliper and its capabilities more accessible to the user

Large diffs are not rendered by default.

0 comments on commit 69000d4

Please sign in to comment.