From 1ed5f9de6da315653466fcb52db934d9e546eeb8 Mon Sep 17 00:00:00 2001 From: Jay Date: Thu, 21 May 2026 18:49:27 +0200 Subject: [PATCH] chore: added dev container (#10925) --- .devcontainer/devcontainer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..cdb348d8 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "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, + }, + }, + }, +}