From 9ac55120cb3a628c86a91e459e37ccea7032eb7e Mon Sep 17 00:00:00 2001 From: Luke Else Date: Mon, 30 Mar 2026 16:03:56 +0100 Subject: [PATCH] feat: Created svelte devcontainer branch --- .gitignore | 14 --------- LICENSE | 18 ----------- README.md | 3 -- svelte/devcontainer.json => devcontainer.json | 0 rust/devcontainer.json | 31 ------------------- 5 files changed, 66 deletions(-) delete mode 100644 .gitignore delete mode 100644 LICENSE delete mode 100644 README.md rename svelte/devcontainer.json => devcontainer.json (100%) delete mode 100644 rust/devcontainer.json diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 8c2b884..0000000 --- a/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -# ---> VisualStudioCode -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json -!.vscode/*.code-snippets - -# Local History for Visual Studio Code -.history/ - -# Built Visual Studio Code Extensions -*.vsix - diff --git a/LICENSE b/LICENSE deleted file mode 100644 index e863fac..0000000 --- a/LICENSE +++ /dev/null @@ -1,18 +0,0 @@ -MIT License - -Copyright (c) 2025 luke-else - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and -associated documentation files (the "Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO -EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 3dddeda..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# .devcontainers - -Repo containing devcontainer configs \ No newline at end of file diff --git a/svelte/devcontainer.json b/devcontainer.json similarity index 100% rename from svelte/devcontainer.json rename to devcontainer.json diff --git a/rust/devcontainer.json b/rust/devcontainer.json deleted file mode 100644 index d3ad787..0000000 --- a/rust/devcontainer.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "Rust", - "runArgs": [ - "--name=Rust", - "--network=host" - ], - "image": "git.luke-else.co.uk/luke-else/rust-dev:latest", - "remoteUser": "dev", - "customizations": { - "vscode": { - "settings": { - "editor.formatOnSave": true, - "[rust]": { - "editor.defaultFormatter": "rust-lang.rust-analyzer" - }, - "rust-analyzer.cargo.runBuildScripts": true, - "remote.autoForwardPorts": false - }, - "extensions": [ - "ms-azuretools.vscode-docker", - "rust-lang.rust-analyzer", - "tamasfe.even-better-toml", - "vadimcn.vscode-lldb", - "dustypomerleau.rust-syntax", - "chrisbeard.rustdocstring", - "mermaidchart.vscode-mermaid-chart" - ] - } - }, - "postCreateCommand": "cargo fetch" -}