This commit is contained in:
Gleb Koval 2022-09-01 12:41:00 +00:00
parent 628d674712
commit cbcd0a685a
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
4 changed files with 15 additions and 2 deletions

View File

@ -4,6 +4,8 @@
ARG VARIANT="buster"
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
RUN sudo apt install gnupg2 -y
# ** [Optional] Uncomment this section to install additional packages. **
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>

View File

@ -14,7 +14,8 @@
// Add the IDs of extensions you want installed when the container is created.
"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.

4
.gitignore vendored
View File

@ -1 +1,3 @@
/target
/target
Cargo.lock
Cargo.toml

8
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,8 @@
{
"leetcode.filePath": {
"default": {
"folder": "${kebab-case-name}",
"filename": "sol.${ext}"
}
}
}