superlint/.devcontainer/devcontainer.json

74 lines
2 KiB
JSON
Raw Normal View History

{
"name": "Super-Linter",
"image": "ghcr.io/super-linter/super-linter:latest",
"customizations": {
"vscode": {
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.wordWrap": "off",
"prettier.resolveGlobalModules": true,
"[markdown]": {
"editor.wordWrap": "off"
},
"[shellscript]": {
"editor.defaultFormatter": "mkhl.shfmt"
},
"[terraform]": {
"editor.defaultFormatter": "hashicorp.terraform"
},
"[terraform-vars]": {
"editor.defaultFormatter": "hashicorp.terraform"
}
},
"extensions": [
"DavidAnson.vscode-markdownlint",
"EditorConfig.EditorConfig",
"HashiCorp.terraform",
"esbenp.prettier-vscode",
"GitHub.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"mads-hartmann.bash-ide-vscode",
"mkhl.shfmt",
"ms-azuretools.vscode-docker",
"ms-vscode.makefile-tools",
"timonwong.shellcheck"
]
}
},
"mounts": [
{
"source": "${localWorkspaceFolder}/TEMPLATES",
"target": "/action/lib/.automation",
"type": "bind"
},
{
"source": "${localWorkspaceFolder}/lib",
"target": "/action/lib",
"type": "bind"
},
{
"source": "${localWorkspaceFolder}/dependencies/Gemfile",
"target": "/Gemfile",
"type": "bind"
},
{
"source": "${localWorkspaceFolder}/dependencies/Gemfile.lock",
"target": "/Gemfile.lock",
"type": "bind"
},
{
"source": "${localWorkspaceFolder}/dependencies/package.json",
"target": "/package.json",
"type": "bind"
},
{
"source": "${localWorkspaceFolder}/dependencies/package-lock.json",
"target": "/package-lock.json",
"type": "bind"
}
],
2024-08-15 04:21:26 -04:00
"runArgs": ["--env-file", ".devcontainer/devcontainer.env"]
}