mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
5e2c028e0f
- Remove unneeded 'context' directive - Update the list of extensions to install - Configure tasks to run super-linter - Remove redundant README - Remove outdated launch configurations and scripts
41 lines
1,005 B
JSON
41 lines
1,005 B
JSON
{
|
|
"name": "Super-Linter",
|
|
"image": "ghcr.io/super-linter/super-linter:latest",
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {},
|
|
"extensions": [
|
|
"DavidAnson.vscode-markdownlint",
|
|
"EditorConfig.EditorConfig",
|
|
"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/linter.sh",
|
|
"target": "/action/lib/linter.sh",
|
|
"type": "bind"
|
|
},
|
|
{
|
|
"source": "${localWorkspaceFolder}/lib/functions",
|
|
"target": "/action/lib/functions",
|
|
"type": "bind"
|
|
}
|
|
],
|
|
"runArgs": [
|
|
"--env-file",
|
|
".devcontainer/devcontainer.env"
|
|
]
|
|
}
|