mirror of
https://github.com/super-linter/super-linter.git
synced 2025-02-13 08:40:18 -05:00
05d4d4e128
Define the RUST_CLIPPY_COMMAND_OPTIONS variable to allow passing arbitrary options to the command that runs RUST_CLIPPY. Fix the ARM test case that just failed because of its apiVersion just expired. Close #4001
73 lines
2 KiB
JSON
73 lines
2 KiB
JSON
{
|
|
"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"
|
|
}
|
|
],
|
|
"runArgs": ["--env-file", ".devcontainer/devcontainer.env"]
|
|
}
|