Skip to content

Commit 21ab5a6

Browse files
committed
fix: suppress clippy::implicit_hasher on free function plan_query
1 parent 010c292 commit 21ab5a6

File tree

1 file changed

+1
-0
lines changed
  • crates/vite_task_plan/src

1 file changed

+1
-0
lines changed

crates/vite_task_plan/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ pub trait TaskGraphLoader {
184184
/// # Errors
185185
/// Returns an error if task graph loading, query, or execution planning fails.
186186
#[expect(clippy::future_not_send, reason = "PlanRequestParser and TaskGraphLoader are !Send")]
187+
#[expect(clippy::implicit_hasher, reason = "FxHashMap is the only hasher used in this codebase")]
187188
pub async fn plan_query(
188189
query_plan_request: QueryPlanRequest,
189190
workspace_path: &Arc<AbsolutePath>,

0 commit comments

Comments
 (0)