Skip to content

Commit

Permalink
Add sources of sechub plugin vscode #3864
Browse files Browse the repository at this point in the history
  • Loading branch information
winzj committed Feb 10, 2025
1 parent 5408835 commit 94a7c8d
Show file tree
Hide file tree
Showing 53 changed files with 13,219 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ide-plugins/vscode/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"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"
}
}
6 changes: 6 additions & 0 deletions ide-plugins/vscode/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
out
.vscode-test/

# Plugin installation packages
*.vsix
11 changes: 11 additions & 0 deletions ide-plugins/vscode/.vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.vscode/**
.vscode-test/**
out/test/**
src/**
.gitignore
.yarnrc
other/spdx/**
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
34 changes: 34 additions & 0 deletions ide-plugins/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!-- SPDX-License-Identifier: MIT --->
# Change Log

All notable changes to the "sechub-plugin-vscode" extension will be documented in this file.

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

## [1.0.1] - 2023-06-14
- Fix README issue by converting AsciiDoc to Markdown

## [1.0.0] - 2023-06-14
- Fixed issues importing reports
- Dependencies updated
- Minimum NodeJS version 16

## [0.1.3] - 2022-03-22
- Dependencies updated
- Workflow uses Node 14
- Notice about move of namespace added

## [0.1.2] - 2022-03-18
- Dependencies updated
- rebranding to Mercedes-Benz

## [0.1.1] - 2021-12-14
- Dependencies updated

## [0.1.0]
- Initial release
- User has possibility to load existing SecHub report from local file system.
- Loaded reports can be crawled and editor will show up when source is available
- If CWE information is available a link is provided in details

## [Unreleased]
21 changes: 21 additions & 0 deletions ide-plugins/vscode/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 Daimler TSS GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 94a7c8d

Please sign in to comment.