Skip to content

Commit

Permalink
Updated radon-menu plugin to v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sdagostini committed Apr 2, 2021
1 parent 3bbf878 commit 07cf0bc
Show file tree
Hide file tree
Showing 17 changed files with 2,639 additions and 0 deletions.
19 changes: 19 additions & 0 deletions radon-menu_v0.0.4/.eslintrc.json
@@ -0,0 +1,19 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/class-name-casing": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
}
}
4 changes: 4 additions & 0 deletions radon-menu_v0.0.4/.gitignore
@@ -0,0 +1,4 @@
out
node_modules
.vscode-test/
*.vsix
7 changes: 7 additions & 0 deletions radon-menu_v0.0.4/.vscode/extensions.json
@@ -0,0 +1,7 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
36 changes: 36 additions & 0 deletions radon-menu_v0.0.4/.vscode/launch.json
@@ -0,0 +1,36 @@
// 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": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
]
}
20 changes: 20 additions & 0 deletions radon-menu_v0.0.4/.vscode/tasks.json
@@ -0,0 +1,20 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
10 changes: 10 additions & 0 deletions radon-menu_v0.0.4/.vscodeignore
@@ -0,0 +1,10 @@
.vscode/**
.vscode-test/**
out/test/**
src/**
.gitignore
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
9 changes: 9 additions & 0 deletions radon-menu_v0.0.4/CHANGELOG.md
@@ -0,0 +1,9 @@
# Change Log

All notable changes to the "radon-menu" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

- Initial release
33 changes: 33 additions & 0 deletions radon-menu_v0.0.4/README.md
@@ -0,0 +1,33 @@
# radon-menu README

This plugin provides a RADON menu with custom RADON commands.

## Features

- RADON command to open the RADON Help Page
- RADON command to open the RADON Monitoring Page
- RADON command to open the RADON Show Deployment Page

## Requirements


## Extension Settings


## Known Issues


## Release Notes

### 0.0.1

Initial release

### 0.0.2

### 0.0.3

### 0.0.4

Final release

0 comments on commit 07cf0bc

Please sign in to comment.