fix: default clippy lints

This commit is contained in:
Mathieu Lala
2022-12-30 18:07:39 +01:00
parent 4c2630b71f
commit 9af5b1c78e
42 changed files with 191 additions and 190 deletions

View File

@@ -287,6 +287,7 @@ pub enum Expr {
Array(Box<StaticVec<Expr>>, Position),
/// #{ name:expr, ... }
Map(
#[allow(clippy::type_complexity)]
Box<(StaticVec<(Ident, Expr)>, BTreeMap<Identifier, Dynamic>)>,
Position,
),
@@ -304,6 +305,7 @@ pub enum Expr {
),
/// Property access - ((getter, hash), (setter, hash), prop)
Property(
#[allow(clippy::type_complexity)]
Box<(
(ImmutableString, u64),
(ImmutableString, u64),