Skip to content

Commit

Permalink
fix devcontainer.json (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
MP91 authored Jan 22, 2024
1 parent aa51e54 commit 0670677
Showing 1 changed file with 20 additions and 23 deletions.
43 changes: 20 additions & 23 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,33 +9,30 @@
"VARIANT": "18"
}
},

// Set *default* container specific settings.json values on container create.
"settings": {},

// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint",
"cschleiden.vscode-github-actions",
"christian-kohler.path-intellisense",
"esbenp.prettier-vscode",
"davidanson.vscode-markdownlint",
"eg2.vscode-npm-script",
"christian-kohler.npm-intellisense",
"alexkrechik.cucumberautocomplete",
"firsttris.vscode-jest-runner",
"piotr-porzuczek.jest-cucumber-code-generator-extension",
"kavod-io.vscode-jest-test-adapter",
"hbenl.vscode-test-explorer",
"ms-vsliveshare.vsliveshare"
],

"customizations": {
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint",
"christian-kohler.path-intellisense",
"esbenp.prettier-vscode",
"davidanson.vscode-markdownlint",
"eg2.vscode-npm-script",
"christian-kohler.npm-intellisense",
"alexkrechik.cucumberautocomplete",
"firsttris.vscode-jest-runner",
"piotr-porzuczek.jest-cucumber-code-generator-extension",
"kavod-io.vscode-jest-test-adapter",
"hbenl.vscode-test-explorer"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "python3 -m pip install pre-commit==3.5.0 --break-system-packages",

// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node"
}

0 comments on commit 0670677

Please sign in to comment.