refactor(devcontainer): reorder properties

Reorder the file so that related properties are roughly grouped together and the order is more logical.

PR: #476
This commit is contained in:
innovaker 2020-12-03 01:25:21 +00:00 committed by Pete Johanson
parent 5122af6111
commit a6a64873af
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
{
"name": "ZMK Development",
"dockerFile": "Dockerfile",
"extensions": ["ms-vscode.cpptools"],
"runArgs": ["--security-opt", "label=disable"],
"containerEnv": { "WORKSPACE_DIR": "${containerWorkspaceFolder}" },
"mounts": ["type=volume,source=zmk-config,target=/workspaces/zmk-config"],
"extensions": ["ms-vscode.cpptools"],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"mounts": ["type=volume,source=zmk-config,target=/workspaces/zmk-config"]
}
}