From 9e1919ec0ad6c06cc51146f56068c3aef674e8df Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Fri, 8 Sep 2023 15:24:36 +0000 Subject: [PATCH] add devcontainer for tea (#582) Reviewed-on: https://gitea.com/gitea/tea/pulls/582 Co-authored-by: techknowlogick Co-committed-by: techknowlogick --- .devcontainer/devcontainer.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..74fa93d --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,20 @@ +{ + "name": "Tea DevContainer", + "image": "mcr.microsoft.com/devcontainers/go:1.21-bullseye", + "features": { + "ghcr.io/devcontainers/features/git-lfs:1.1.0": {} + }, + "customizations": { + "vscode": { + "settings": {}, + "extensions": [ + "editorconfig.editorconfig", + "golang.go", + "stylelint.vscode-stylelint", + "DavidAnson.vscode-markdownlint", + "ms-azuretools.vscode-docker", + "GitHub.vscode-pull-request-github" + ] + } + } +} \ No newline at end of file