Skip to content

Commit

Permalink
chore: podman support for devcontainer (#3529)
Browse files Browse the repository at this point in the history
* chore: add podman devcontainer support

* chore: remove deprecation warning

* chore: add extensions to devcontainer

---------

Co-authored-by: Marco Muser <[email protected]>
  • Loading branch information
marcomuser and Marco Muser authored Oct 19, 2024
1 parent 90833d2 commit f8664b0
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"build": {
"dockerfile": "Dockerfile"
},
"runArgs": [
"--userns=keep-id"
],
"containerEnv": {
"HOME": "/home/node"
},
"customizations": {
"vscode": {
"settings": {
Expand All @@ -13,9 +19,13 @@
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
}
}
},
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
}
}

0 comments on commit f8664b0

Please sign in to comment.