Skip to content

Commit

Permalink
Add basic VSCode tasks.json (gamemanual0#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
abidingabi authored Nov 13, 2022
1 parent 7cc76e1 commit 9f00226
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Thumbs.db

# vscode
.vscode/*
!.vscode/tasks.json
*.code-workspace

# IntelliJ/PyCharm
Expand Down
25 changes: 25 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Auto Build",
"type": "shell",
"command": "make autobuild",
"group": "build"
},
{
"label": "Build HTML",
"type": "shell",
"command": "make html",
"group": "build"
},
{
"label": "Lint",
"type": "shell",
"command": "make lint",
"group": "test"
}
]
}

0 comments on commit 9f00226

Please sign in to comment.