summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Sisson <5761292+marksisson@users.noreply.github.com>2023-02-27 08:06:49 -0600
committerAndrew Gallant <jamslam@gmail.com>2023-07-08 18:52:42 -0400
commit0f6181d309d42061ed5be528503b93560c805f3c (patch)
treec4c14cad30a9e6a725eb3f39b592ec6d6b970ae0
parente902e2fef40b926bdf093c6a3939be8cc6f3778a (diff)
ignore/types: add USD to the default file types
Closes #2432
-rw-r--r--CHANGELOG.md2
-rw-r--r--crates/ignore/src/default_types.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 694a5e55..ea95a7e8 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 0cd29a95..587e989f 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"]),