From c7b3615f5e93335247819f3f6184459d8b538cb0 Mon Sep 17 00:00:00 2001 From: Vatsal Gupta <40350810+gvatsal60@users.noreply.github.com> Date: Sun, 6 Oct 2024 10:10:21 +0000 Subject: [PATCH] [#12730] Support devcontainer and codespace specs --- .devcontainer/devcontainer.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..f57118b74 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,22 @@ +{ + "image": "mcr.microsoft.com/devcontainers/base:noble", + "customizations": { + "vscode": { + "extensions": [ + "streetsidesoftware.code-spell-checker", + "usernamehw.errorlens", + "mads-hartmann.bash-ide-vscode" + ], + "settings": { + "[shellscript]": { + "editor.defaultFormatter": "mads-hartmann.bash-ide-vscode", + "editor.tabSize": 4, + "files.eol": "\n" + }, + "editor.trimAutoWhitespace": true, + "files.autoSave": "afterDelay", + "files.eol": "auto" + } + } + } +} \ No newline at end of file