From 8e50ba9b4236174c7d613a1eb60f6372cd34007f Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Fri, 30 Dec 2022 11:37:34 +0700 Subject: [PATCH 1/2] Create devcontainer.json --- .devcontainer/devcontainer.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..a56bc817 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,10 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + }, + "extensions": [ + "esbenp.prettier-vscode", + "dbaeumer.vscode-eslint" + ], + "postCreateCommand": "npm install --global @microsoft/rush && rush update && rush build --to-except bemuse", +} From 6bb9be20ce266487d527b7ffc516389d44ced230 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Fri, 30 Dec 2022 04:45:50 +0000 Subject: [PATCH 2/2] Fix formatting --- .devcontainer/devcontainer.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index a56bc817..79bc8604 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,10 +1,6 @@ { "image": "mcr.microsoft.com/devcontainers/universal:2", - "features": { - }, - "extensions": [ - "esbenp.prettier-vscode", - "dbaeumer.vscode-eslint" - ], - "postCreateCommand": "npm install --global @microsoft/rush && rush update && rush build --to-except bemuse", + "features": {}, + "extensions": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"], + "postCreateCommand": "npm install --global @microsoft/rush && rush update && rush build --to-except bemuse" }