From 608eaa6ff526a41c197eb8a6e12be36813c916ac Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 8 Aug 2019 15:52:42 -0700 Subject: [PATCH] Install rustfmt and clippy for Rust --- containers/rust/.devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/rust/.devcontainer/Dockerfile b/containers/rust/.devcontainer/Dockerfile index 02f1b8c1fc..88d8558aea 100644 --- a/containers/rust/.devcontainer/Dockerfile +++ b/containers/rust/.devcontainer/Dockerfile @@ -28,7 +28,7 @@ RUN apt-get update \ # # Install Rust components && rustup update \ - && rustup component add rls rust-analysis rust-src \ + && rustup component add rls rust-analysis rust-src rustfmt clippy \ # # Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user. && groupadd --gid $USER_GID $USERNAME \