diff options
author | innovaker <[email protected]> | 2020-12-03 01:25:21 +0000 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2020-12-06 22:54:07 -0500 |
commit | a6a64873af94a6025bfde2172262e3031295ee59 (patch) | |
tree | 50aa481840e472ec4a000443b19e0b70ce969db0 /.devcontainer/devcontainer.json | |
parent | 5122af6111aa393b3ef90cee4594287ef99bd26a (diff) | |
download | zmk-a6a64873af94a6025bfde2172262e3031295ee59.tar.gz zmk-a6a64873af94a6025bfde2172262e3031295ee59.zip |
refactor(devcontainer): reorder properties
Reorder the file so that related properties are roughly grouped together and the order is more logical.
PR: #476
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r-- | .devcontainer/devcontainer.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7868a45d16..7a1308fe0f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -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"] + } } |