Disable Clippy's too-many-arguments rule (#4663)

## Summary

We allow this constantly, I think it's just too pedantic for us.
This commit is contained in:
Charlie Marsh 2024-06-30 15:30:38 -04:00 committed by GitHub
parent b4c53fd15f
commit ac87fd4006
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 2 additions and 30 deletions

View file

@ -137,7 +137,6 @@ impl<'a, Context: BuildContext, InstalledPackages: InstalledPackagesProvider>
/// When a marker environment is provided, the resolver is in
/// "non-universal" mode, which corresponds to standard `pip` behavior that
/// works only for a specific marker environment.
#[allow(clippy::too_many_arguments)]
pub fn new(
manifest: Manifest,
options: Options,
@ -180,7 +179,6 @@ impl<Provider: ResolverProvider, InstalledPackages: InstalledPackagesProvider>
Resolver<Provider, InstalledPackages>
{
/// Initialize a new resolver using a user provided backend.
#[allow(clippy::too_many_arguments)]
pub fn new_custom_io(
manifest: Manifest,
options: Options,