From 83d94672ae09a5deb6d4d795b105b3b18d34508a Mon Sep 17 00:00:00 2001 From: Andrew McNulty Date: Mon, 30 Jun 2025 14:13:12 +0200 Subject: [PATCH] ignore/types: add LLVM to default types This PR adds llvm to the list of default types, matching files with extension ll which is used widely for the textual form of LLVM's Intermediate Representation. Ref: https://llvm.org/docs/LangRef.html Closes #3079 --- crates/ignore/src/default_types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index 9859049..de58ecc 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -152,6 +152,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ ]), (&["lilypond"], &["*.ly", "*.ily"]), (&["lisp"], &["*.el", "*.jl", "*.lisp", "*.lsp", "*.sc", "*.scm"]), + (&["llvm"], &["*.ll"]), (&["lock"], &["*.lock", "package-lock.json"]), (&["log"], &["*.log"]), (&["lua"], &["*.lua"]),