Skip to content

Commit

Permalink
chore: allow too many arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
lubosmato committed Sep 2, 2024
1 parent ce4063c commit 860c583
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1226,6 +1226,7 @@ fn convert_pvs<'a>(fields: &[ScalarFieldRef], values: Vec<PrismaValue>, ctx: &Co
}

trait JsonFilterExt {
#[allow(clippy::too_many_arguments)]
fn json_contains(
self,
field: &ScalarFieldRef,
Expand All @@ -1237,6 +1238,7 @@ trait JsonFilterExt {
ctx: &Context<'_>,
) -> Expression<'static>;

#[allow(clippy::too_many_arguments)]
fn json_starts_with(
self,
field: &ScalarFieldRef,
Expand All @@ -1248,6 +1250,7 @@ trait JsonFilterExt {
ctx: &Context<'_>,
) -> Expression<'static>;

#[allow(clippy::too_many_arguments)]
fn json_ends_with(
self,
field: &ScalarFieldRef,
Expand Down

0 comments on commit 860c583

Please sign in to comment.