Skip to content

Commit

Permalink
Add VS Code support for local execution of KLC compliance checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ssewell committed Aug 20, 2023
1 parent 8999cf5 commit cc04e68
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "KLC - Check Footprints",
"type": "shell",
"command": "python",
"args": [
".\\library-utils\\klc-check\\check_footprint.py",
".\\SimPanel.pretty\\*",
"-vv"
],
"problemMatcher": []
}
]
}

0 comments on commit cc04e68

Please sign in to comment.