From 556623684e99fade287f265c5f513321487dd35a Mon Sep 17 00:00:00 2001 From: Thomas ten Cate Date: Mon, 8 Sep 2025 10:46:21 +0200 Subject: [PATCH] ignore/types: add GDScript files (*.gd) for the Godot Engine Closes #3142 --- 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 930fbd3..528415a 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"]), + (&["gdscript"], &["*.gd"]), (&["gleam"], &["*.gleam"]), (&["gn"], &["*.gn", "*.gni"]), (&["go"], &["*.go"]),