From c7eef11e0221e8b7b2489459cf5da543e3640546 Mon Sep 17 00:00:00 2001 From: Mouadh HSOUMI Date: Fri, 8 Mar 2024 19:41:20 +0100 Subject: [PATCH] chore: ignore binary lock files --- src/utils/git.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/git.ts b/src/utils/git.ts index 1d8b0e18..52ce944f 100644 --- a/src/utils/git.ts +++ b/src/utils/git.ts @@ -23,6 +23,7 @@ const filesToExclude = [ // yarn.lock, Cargo.lock, Gemfile.lock, Pipfile.lock, etc. '*.lock', + '*.lockb', // Binary lock file ].map(excludeFromDiff); export const getStagedDiff = async (excludeFiles?: string[]) => {