Skip to content

Commit

Permalink
chore: devcontainer updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Mar 10, 2023
1 parent 9093af5 commit a4d5ab3
Showing 1 changed file with 23 additions and 15 deletions.
38 changes: 23 additions & 15 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "16"
"VARIANT": "16",
"BUILDKIT_INLINE_CACHE": "0"
}
},

Expand All @@ -15,25 +16,32 @@
],

// Set *default* container specific settings.json values on container create.
"settings": {},

// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint",
"mutantdino.resourcemonitor",
"meganrogge.template-string-converter",
"bungcip.better-toml",
"wix.vscode-import-cost",
"christian-kohler.path-intellisense",
"timonwong.shellcheck",
"vue.volar",
"vue.vscode-typescript-vue-plugin"

],
"postCreateCommand":"mkdir /tmp/typos && wget https://github.com/crate-ci/typos/releases/download/v1.13.10/typos-v1.13.10-x86_64-unknown-linux-musl.tar.gz -O /tmp/typos-v1.13.10-x86_64-unknown-linux-musl.tar.gz && tar -xvf /tmp/typos-v1.13.10-x86_64-unknown-linux-musl.tar.gz -C /tmp/typos && install -Dm 755 /tmp/typos/typos -t \"${HOME}/.local/bin\" && rm -rf /tmp/typos",

"customizations": {
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint",
"mutantdino.resourcemonitor",
"meganrogge.template-string-converter",
"bungcip.better-toml",
"wix.vscode-import-cost",
"christian-kohler.path-intellisense",
"timonwong.shellcheck",
"vue.volar",
"vue.vscode-typescript-vue-plugin"
]
}
},


"remoteUser": "node",
"features": {
"git": "os-provided"
"ghcr.io/devcontainers/features/git:1": {
"version":"os-provided"
}
}
}

0 comments on commit a4d5ab3

Please sign in to comment.