Skip to content

Commit

Permalink
devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
aholstrup1 committed Jan 6, 2025
1 parent 622bac7 commit 26e6f9b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"tasks": {
"build": "Write-Host 'Not Supported'",
"test": "pwsh -Command \". (Join-Path \".\" \"Tests/runtests.ps1\")\"",
"run": "Write-Host 'Not Supported'"
},
"settings": {
"terminal.integrated.defaultProfile.linux": "pwsh"
},
"features": {
"ghcr.io/devcontainers/features/powershell:1": {
"modules": "BcContainerHelper"
},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.vscode-github-actions",
"ms-vscode.powershell",
"github.vscode-pull-request-github",
"github.vscode-codeql"
]
}
},
"postCreateCommand": "Import-Module BCContainerHelper && pip install pre-commit && pre-commit install --install-hooks --overwrite"
}

0 comments on commit 26e6f9b

Please sign in to comment.