devcontainer.json 566 B

123456789101112131415161718192021
  1. {
  2. "name": "Ubuntu",
  3. "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
  4. "features": {
  5. "ghcr.io/devcontainers-extra/features/prettier:1": {},
  6. "ghcr.io/devcontainers-extra/features/shellcheck:1": {}
  7. },
  8. "customizations": {
  9. "vscode": {
  10. "extensions": [
  11. "editorconfig.editorconfig",
  12. "esbenp.prettier-vscode",
  13. "ms-python.python",
  14. "redhat.vscode-yaml",
  15. "timonwong.shellcheck",
  16. "yzhang.markdown-all-in-one"
  17. ]
  18. }
  19. },
  20. "postCreateCommand": "npm install --save-dev prettier-plugin-sh"
  21. }