From ebd4f1cdc264d07c2dea706f65f36f8315c10e7f Mon Sep 17 00:00:00 2001 From: yubiuser Date: Sat, 7 Sep 2024 21:56:02 +0200 Subject: [PATCH] Allow renamed-and-removed-lints Signed-off-by: yubiuser --- .devcontainer/Dockerfile | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c5cf4356..156630da 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -6,7 +6,7 @@ FROM rust:${rust_version}-${debian_version} ARG DEBIAN_FRONTEND=noninteractive ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse" ENV RUST_BACKTRACE=1 -ENV RUSTFLAGS=-Dwarnings +ENV RUSTFLAGS="-D warnings -A renamed-and-removed-lints" RUN apt-get update && \ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cadfd69e..66a430b4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ on: env: RUST_BACKTRACE: 1 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings -A renamed-and-removed-lints # The layering here is as follows: # 1. code formatting