forked from Ash258/Scoop-GithubActions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.devcontainer.json
28 lines (28 loc) · 936 Bytes
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "Shovel GithubActions Dev",
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/powershell": {},
"ghcr.io/devcontainers/features/node": {},
},
"extensions": [
"DavidAnson.vscode-markdownlint",
"EditorConfig.EditorConfig",
"Gruntfuggly.todo-tree",
"ms-vscode.powershell-preview",
"redhat.vscode-yaml",
"yzhang.markdown-all-in-one",
],
"settings": {
"powershell.powerShellAdditionalExePaths": {
"Core": "/usr/local/bin/pwsh",
},
"powershell.powerShellDefaultVersion": "Core",
"powershell.promptToUpdatePowerShell": false,
"powershell.scriptAnalysis.enable": true,
"yaml.completion": true,
"yaml.format.bracketSpacing": true,
"yaml.format.enable": true,
"yaml.schemaStore.enable": true,
},
}