From ef8bf24e7ebeeef7c18179f254879430959e4900 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 14 Aug 2023 09:36:53 -0500 Subject: [PATCH] fix: Dont check pnpm lockfiles Fixes #802 --- crates/typos-cli/src/default_types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/typos-cli/src/default_types.rs b/crates/typos-cli/src/default_types.rs index 5eb3bdd..e64b1a5 100644 --- a/crates/typos-cli/src/default_types.rs +++ b/crates/typos-cli/src/default_types.rs @@ -146,7 +146,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[ ]), ("lilypond", &["*.ly", "*.ily"]), ("lisp", &["*.el", "*.jl", "*.lisp", "*.lsp", "*.sc", "*.scm"]), - ("lock", &["*.lock", "package-lock.json", "requirements.txt", "go.sum"]), + ("lock", &["*.lock", "package-lock.json", "requirements.txt", "go.sum", "pnpm-lock.yaml"]), ("log", &["*.log"]), ("lua", &["*.lua"]), ("lz4", &["*.lz4"]),