2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-17 19:21:29 +03:00
Files
axios/.devcontainer/devcontainer.json
T
2026-05-21 18:49:27 +02:00

18 lines
459 B
JSON

{
"name": "axios",
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-24-bookworm",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
},
"postCreateCommand": "npm ci --ignore-scripts",
"customizations": {
"vscode": {
"extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"],
"settings": {
"eslint.validate": ["javascript"],
"editor.formatOnSave": false,
},
},
},
}