From c767499254ccd1b5145e7da5a3d1aaae9ad6784e Mon Sep 17 00:00:00 2001 From: VS Code <> Date: Sun, 8 Mar 2026 15:23:41 +0000 Subject: [PATCH] Initial commit --- .devcontainer/devcontainer.json | 9 +++++++++ .gitignore | 7 +++++++ README.md | 12 ++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 .gitignore create mode 100644 README.md diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..6e79093 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,9 @@ +{ + "name": "vsc-adda", + "image": "git.kvarnarp.se/vscode/vsc-extension:latest", + "customizations": { + "vscode": { + "extensions": ["esbenp.prettier-vscode"] + } + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..071ac10 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +out/ +dist/ +node_modules/ +.vscode-test/ +*.vsix +.env +vsc-extension-quickstart.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..fdbd566 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# README + +## Getting started + +1. Create a new repository from this template. +2. Open the repository in the dev container. +3. Run the following command inside the container: + ```sh + yo code . + ``` +4. Follow the prompts to scaffold your extension. +5. Commit the generated project files.