Skip to content

Commit

Permalink
Merge pull request #1328 from yubiuser/allow_removed_lints
Browse files Browse the repository at this point in the history
Allow renamed-and-removed-lints
  • Loading branch information
roderickvd authored Sep 7, 2024
2 parents e9234d3 + ebd4f1c commit f647331
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f647331

Please sign in to comment.