Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mziyabo committed Apr 5, 2024
0 parents commit 379e1c3
Show file tree
Hide file tree
Showing 15 changed files with 20,267 additions and 0 deletions.
Empty file added .github/workflows/release.yaml
Empty file.
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build
/dist
/example

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
*.nnb
NOTES.md

npm-debug.log*
yarn-debug.log*
yarn-error.log*

/public
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/components/grid/vulnerability-report.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
Empty file added README.md
Empty file.
Loading

0 comments on commit 379e1c3

Please sign in to comment.