From a7d9d829ce06583e1b196b991e152221ce1bad10 Mon Sep 17 00:00:00 2001 From: Christopher McArthur Date: Tue, 26 Dec 2023 14:18:04 -0500 Subject: [PATCH] clean up dev container --- .devcontainer/Dockerfile | 3 ++- .devcontainer/devcontainer.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f79f9d211..999e79f86 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,6 +2,7 @@ FROM ubuntu:22.04 RUN export DEBIAN_FRONTEND=noninteractive \ && apt-get update \ - && apt-get -y install git g++ cmake libssl-dev libgtest-dev clang-format clang-tidy + && apt-get -y install git g++ cmake libssl-dev \ + libgtest-dev clang-format clang-tidy doxygen ENV CMAKE_CXX_CLANG_TIDY="clang-tidy;-fix" diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d24bc157f..08052ae18 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,8 +6,8 @@ "customizations": { "vscode": { "extensions": [ - "dbaeumer.vscode-eslint" + "streetsidesoftware.code-spell-checker" ] } } -} \ No newline at end of file +}