diff --git a/crates/typos-cli/src/default_types.rs b/crates/typos-cli/src/default_types.rs index b9fe9c8..621565a 100644 --- a/crates/typos-cli/src/default_types.rs +++ b/crates/typos-cli/src/default_types.rs @@ -160,7 +160,13 @@ pub(crate) const DEFAULT_TYPES: &[(&str, &[&str])] = &[ ]), ("lilypond", &["*.ly", "*.ily"]), ("lisp", &["*.el", "*.lisp", "*.lsp", "*.sc", "*.scm"]), - ("lock", &["*.lock", "package-lock.json", "composer.lock", "*.terraform.lock.hcl"]), + ("lock", &[ + "*.lock", + "package-lock.json", "pnpm-lock.yaml", + "composer.lock", "*.terraform.lock.hcl", + "requirements.txt", + "go.sum", + ]), ("log", &["*.log"]), ("lua", &["*.lua"]), ("lz4", &["*.lz4"]),