cleanup
This commit is contained in:
parent
628d674712
commit
cbcd0a685a
|
@ -4,6 +4,8 @@
|
||||||
ARG VARIANT="buster"
|
ARG VARIANT="buster"
|
||||||
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
|
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
|
||||||
|
|
||||||
|
RUN sudo apt install gnupg2 -y
|
||||||
|
|
||||||
# ** [Optional] Uncomment this section to install additional packages. **
|
# ** [Optional] Uncomment this section to install additional packages. **
|
||||||
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||||||
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
|
|
||||||
// Add the IDs of extensions you want installed when the container is created.
|
// Add the IDs of extensions you want installed when the container is created.
|
||||||
"extensions": [
|
"extensions": [
|
||||||
"rust-lang.rust-analyzer"
|
"rust-lang.rust-analyzer",
|
||||||
|
"LeetCode.vscode-leetcode"
|
||||||
],
|
],
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
/target
|
/target
|
||||||
|
Cargo.lock
|
||||||
|
Cargo.toml
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"leetcode.filePath": {
|
||||||
|
"default": {
|
||||||
|
"folder": "${kebab-case-name}",
|
||||||
|
"filename": "sol.${ext}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue