Turn off clippy::struct_excessive_bools rule (#14102)

We always ignore the `clippy::struct_excessive_bools` rule and formerly
annotated this at the function level. This PR specifies the allow in
`workspace.lints.clippy` in `Cargo.toml`.
This commit is contained in:
John Mumm
2025-06-17 06:18:54 -04:00
committed by GitHub
parent cf67d9c633
commit e02cd74e64
8 changed files with 1 additions and 90 deletions
-1
View File
@@ -32,7 +32,6 @@ pub struct VirtualEnvironment {
/// A parsed `pyvenv.cfg`
#[derive(Debug, Clone)]
#[allow(clippy::struct_excessive_bools)]
pub struct PyVenvConfiguration {
/// Was the virtual environment created with the `virtualenv` package?
pub(crate) virtualenv: bool,