From 064e9ee30ee56f308ad0c78fc24f6e90a85880c7 Mon Sep 17 00:00:00 2001 From: Tomek Date: Sun, 20 Jul 2025 23:38:31 +0200 Subject: [PATCH] ignore/types: add gleam [Gleam] is a general-purpose, concurrent, functional high-level programming language that compiles to Erlang or JavaScript source code. Closes #3105 [Gleam]: https://gleam.run/ --- 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 de58ecc0..cd1604ff 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -90,6 +90,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ (&["fsharp"], &["*.fs", "*.fsx", "*.fsi"]), (&["fut"], &["*.fut"]), (&["gap"], &["*.g", "*.gap", "*.gi", "*.gd", "*.tst"]), + (&["gleam"], &["*.gleam"]), (&["gn"], &["*.gn", "*.gni"]), (&["go"], &["*.go"]), (&["gprbuild"], &["*.gpr"]),