fix codestyle issues with devcontainer

This commit is contained in:
41666 2020-12-05 23:15:04 -05:00
parent 80db505a11
commit 899853e24c

View file

@ -1,34 +1,34 @@
{ {
"name": "Roleypoly (Go, Node)", "name": "Roleypoly (Go, Node)",
"image": "ghcr.io/roleypoly/dev-container:main", "image": "ghcr.io/roleypoly/dev-container:main",
// Set *default* container specific settings.json values on container create. // Set *default* container specific settings.json values on container create.
"settings": { "settings": {
"terminal.integrated.shell.linux": "/bin/bash" "terminal.integrated.shell.linux": "/bin/bash"
}, },
// 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": [
"dbaeumer.vscode-eslint", "dbaeumer.vscode-eslint",
"golang.go", "golang.go",
"hashicorp.terraform", "hashicorp.terraform",
"firsttris.vscode-jest-runner", "firsttris.vscode-jest-runner",
"esbenp.prettier-vscode", "esbenp.prettier-vscode",
"jpoissonnier.vscode-styled-components", "jpoissonnier.vscode-styled-components",
"eg2.vscode-npm-script", "eg2.vscode-npm-script",
"christian-kohler.npm-intellisense", "christian-kohler.npm-intellisense",
"ms-azuretools.vscode-docker", "ms-azuretools.vscode-docker",
"eamodio.gitlens", "eamodio.gitlens",
"davidanson.vscode-markdownlint", "davidanson.vscode-markdownlint",
"stylelint.vscode-stylelint", "stylelint.vscode-stylelint",
"pflannery.vscode-versionlens", "pflannery.vscode-versionlens",
"visualstudioexptteam.vscodeintellicode", "visualstudioexptteam.vscodeintellicode",
"bungcip.better-toml" "bungcip.better-toml"
], ],
// 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.
// "forwardPorts": [], // "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created. // Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a", // "postCreateCommand": "uname -a",
// Uncomment when using a ptrace-based debugger like C++, Go, and Rust // Uncomment when using a ptrace-based debugger like C++, Go, and Rust
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], // "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root. // Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode" "remoteUser": "vscode"
} }