superlint/.devcontainer/devcontainer.json
Marco Ferrari 6b2ef057ca
chore: new ignore example and set word wrap (#6080)
- Add a new example about ignoring more than one file.
- Disable word wrap in the editor configured by the devcontainer.
2024-08-26 18:19:43 +02:00

38 lines
1,023 B
JSON

{
"name": "Super-Linter",
"image": "ghcr.io/super-linter/super-linter:latest",
"customizations": {
"vscode": {
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordWrap": "off",
"prettier.resolveGlobalModules": true
},
"extensions": [
"DavidAnson.vscode-markdownlint",
"EditorConfig.EditorConfig",
"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"
}
],
"runArgs": ["--env-file", ".devcontainer/devcontainer.env"]
}