From 9acacbb320820d8850391bde1ff98343d8156de8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 25 Mar 2021 21:12:05 +0200 Subject: [PATCH] ci: Allow clippy::upper_case_acronyms That would otherwise change a lot of API in confusing ways, e.g. RTSP -> Rtsp and would be inconsistent with the naming in C. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 636110d9..7fe0c732 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -198,7 +198,7 @@ clippy: rules: - when: 'always' script: - - cargo clippy --locked --color=always --all --all-features --all-targets -- -A clippy::single_match -A clippy::manual_range_contains -D warnings + - cargo clippy --locked --color=always --all --all-features --all-targets -- -A clippy::single_match -A clippy::manual_range_contains -A clippy::upper_case_acronyms -D warnings deny: extends: .img-stable