commit c767499254ccd1b5145e7da5a3d1aaae9ad6784e Author: VS Code <> Date: Sun Mar 8 15:23:41 2026 +0000 Initial commit 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.