0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00

chore: podman support for devcontainer (#3529)

* chore: add podman devcontainer support

* chore: remove deprecation warning

* chore: add extensions to devcontainer

---------

Co-authored-by: Marco Muser <marco.muser@enpal.de>
This commit is contained in:
Marco Muser 2024-10-20 00:07:22 +02:00 committed by GitHub
parent 90833d2467
commit f8664b03a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,12 @@
"build": {
"dockerfile": "Dockerfile"
},
"runArgs": [
"--userns=keep-id"
],
"containerEnv": {
"HOME": "/home/node"
},
"customizations": {
"vscode": {
"settings": {
@ -13,9 +19,13 @@
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
}
}
},
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
}
}