From 0f6181d309d42061ed5be528503b93560c805f3c Mon Sep 17 00:00:00 2001 From: Mark Sisson <5761292+marksisson@users.noreply.github.com> Date: Mon, 27 Feb 2023 08:06:49 -0600 Subject: [PATCH] ignore/types: add USD to the default file types Closes #2432 --- CHANGELOG.md | 2 +- crates/ignore/src/default_types.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 694a5e5..ea95a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Unreleased changes. Release notes have not yet been written. Feature enhancements: -* Added or improved file type filtering for Elixir, Fuchsia, Gentoo, GraphQL +* Added or improved file type filtering for Elixir, Fuchsia, Gentoo, GraphQL, USD Bug fixes: diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index 0cd29a9..587e989 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -266,6 +266,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[ ("twig", &["*.twig"]), ("txt", &["*.txt"]), ("typoscript", &["*.typoscript", "*.ts"]), + ("usd", &["*.usd", "*.usda", "*.usdc"]), ("vala", &["*.vala"]), ("vb", &["*.vb"]), ("vcl", &["*.vcl"]),