Is it possible to disable clippy for one subdirectory of a workspace

I had to do a few modification for an existing crate, and it didn't made sense to publish them, so I vendored that code. I am using cargo workspaces, and this crate is in one of the subdirectory of my workspace. Is it possible to disable all clippy lint for this crate, while still being able to have clippy lint at the maximum level of annoyance for the rest of my code?

I feel stupid, I just had to add

#![allow(clippy::all)]

in the lib.rs of that crate.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.