forked from MicrosoftDocs/azure-docs-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
42 lines (42 loc) · 1.08 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/powershell:1": {
"modules": "Documentarian,Documentarian.Vale,Documentarian.MicrosoftDocs,Documentarian.ModuleAuthor"
}
},
"customizations": {
"vscode": {
"extensions": [
"chrischinchilla.vale-vscode",
"davidanson.vscode-markdownlint",
"docsmsft.docs-images",
"docsmsft.docs-linting",
"docsmsft.docs-markdown",
"docsmsft.docs-preview",
"docsmsft.docs-yaml",
"eamodio.gitlens",
"marvhen.reflow-markdown",
"ms-vscode.powershell",
"ms-vscode.wordcount",
"nhoizey.gremlins",
"redhat.vscode-yaml",
"shuworks.vscode-table-formatter",
"streetsidesoftware.code-spell-checker",
"tyriar.sort-lines",
"usernamehw.errorlens",
"wmaurer.change-case"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "pwsh",
"vale.valeCLI.path": "",
"vale.valeCLI.config": ""
}
}
},
"postStartCommand": "vale sync"
}