At the beginning of you lib.rs or main.rs file:
#![allow(
first_lint_name,
second_lint_name,
third_lint_name,
)]
Although untested, I guess clippy lints should work too when prefixing the lint names with clippy:: :
#![allow(
clippy::first_lint_name,
clippy::second_lint_name,
clippy::third_lint_name,
)]