From 835cc3c3316b10eb8ca4152497a4a4d19f98b3c2 Mon Sep 17 00:00:00 2001 From: Connor Yoh Date: Fri, 14 Feb 2025 15:35:19 +0000 Subject: [PATCH] Added recommended extensions to dev container --- .devcontainer/devcontainer.json | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b84b75f2f..4bcc08c62 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -13,11 +13,37 @@ // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [ 8080 - ] + ], // Uncomment the next line to run commands after the container is created. // "postCreateCommand": "cat /etc/os-release", // Configure tool-specific properties. - // "customizations": {}, + "customizations": { + "vscode": { + "extensions": [ + "elagil.pre-commit-helper", // Support for pre-commit hooks to enforce code quality + "josevseb.google-java-format-for-vs-code", // Google Java code formatter to follow the Google Java Style Guide + "ms-python.black-formatter", // Python code formatter using Black + "ms-python.flake8", // Flake8 linter for Python to enforce code quality + "ms-python.python", // Official Microsoft Python extension with IntelliSense, debugging, and Jupyter support + // "ms-vscode-remote.remote-containers", // Support for remote development with containers (Docker, Dev Containers) + // "ms-vscode-remote.vscode-remote-extensionpack", // Remote Development Pack for SSH, WSL, and Containers + "Oracle.oracle-java", // Oracle Java extension with additional features for Java development + "redhat.java", // Java support by Red Hat with IntelliSense, debugging, and code navigation + "shengchen.vscode-checkstyle", // Checkstyle integration for Java code quality checks + "streetsidesoftware.code-spell-checker", // Spell checker for code to avoid typos + "vmware.vscode-boot-dev-pack", // Developer tools for Spring Boot by VMware + "vmware.vscode-spring-boot", // Spring Boot tools by VMware for enhanced Spring development + "vscjava.vscode-gradle", // Gradle extension for build and automation support + "vscjava.vscode-java-debug", // Debugging support for Java projects + "vscjava.vscode-java-dependency", // Java dependency management within VS Code + "vscjava.vscode-java-pack", // Java Extension Pack with essential Java tools for VS Code + "vscjava.vscode-java-test", // Java test framework for running and debugging tests in VS Code + "vscjava.vscode-spring-boot-dashboard", // Spring Boot dashboard for managing and visualizing Spring Boot applications + "vscjava.vscode-spring-initializr", // Support for Spring Initializr to create new Spring projects + "ms-azuretools.vscode-docker" // build, manage, and deploy containerized applications from Visual Studio Code + ] + } + } // Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "devcontainer" }