Skip to content

Commit

Permalink
build(vscode): add vscode settings/tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuar committed Jun 16, 2023
1 parent bdf2607 commit 47c29c8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ignore everything
.vscode/
internal/agent/VERSION
home-assistant

Expand Down
3 changes: 3 additions & 0 deletions .vscode/ltex.dictionary.en-US.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Podman
go-hass-agent
ABRT
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"go.diagnostic.vulncheck": "Imports"
}
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": "Run Home Assistant Core",
"type": "shell",
"command": "source $HA_PATH/venv/bin/activate && hass -c $HA_PATH/config",
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": [],
},
]
}

0 comments on commit 47c29c8

Please sign in to comment.