Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
phschaad committed May 7, 2020
0 parents commit c3db3ea
Show file tree
Hide file tree
Showing 31 changed files with 100,783 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .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/class-name-casing": "warn",
"@typescript-eslint/semi": "warn",
"curly": "off",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
}
}
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
out
node_modules
.vscode-test/
*.vsix
*.code-workspace
.vscode
10 changes: 10 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.vscode/**
.vscode-test/**
out/test/**
src/**
.gitignore
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Change Log

## 0.1.0

Initial release of SDFV for VS Code
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SDFV in VS Code

This VS Code extension aims to provide a viewing panel for
[SDFGs](http://spcl.inf.ethz.ch/Research/DAPP/) inside of VS Code. It
serves as a wrapper for the SDFG Viewer SDFV, found in the current version
of [DaCe](https://github.com/spcl/dace).

## Features

Provides an SDFG viewing panel which:
- opens to the side automatically, when you open up a valid SDFG file
(file ending in `.sdfg`, JSON formatted).
- Always updates to show the last looked at SDFG.
- Auto-updates the SDFG Viewer when the file is saved from within VS Code.

## Release Notes

### 0.1.0

Initial release of SDFV for VS Code
Binary file added media/MaterialIcons-Regular.ttf
Binary file not shown.
Binary file added media/MaterialIcons-Regular.woff
Binary file not shown.
Binary file added media/MaterialIcons-Regular.woff2
Binary file not shown.
Loading

0 comments on commit c3db3ea

Please sign in to comment.