Skip to content

Commit f647331

Browse files
authored
Merge pull request #1328 from yubiuser/allow_removed_lints
Allow renamed-and-removed-lints
2 parents e9234d3 + ebd4f1c commit f647331

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM rust:${rust_version}-${debian_version}
66
ARG DEBIAN_FRONTEND=noninteractive
77
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
88
ENV RUST_BACKTRACE=1
9-
ENV RUSTFLAGS=-Dwarnings
9+
ENV RUSTFLAGS="-D warnings -A renamed-and-removed-lints"
1010

1111

1212
RUN apt-get update && \

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737

3838
env:
3939
RUST_BACKTRACE: 1
40-
RUSTFLAGS: -D warnings
40+
RUSTFLAGS: -D warnings -A renamed-and-removed-lints
4141

4242
# The layering here is as follows:
4343
# 1. code formatting

0 commit comments

Comments
 (0)