summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrent Williams <85238383+JustBarnt@users.noreply.github.com>2024-03-19 13:36:08 -0400
committerGitHub <noreply@github.com>2024-03-19 13:36:08 -0400
commit9da0995df4cde892b899687c20b717c69b4ea0d1 (patch)
tree35f5b0c98056e880f7c20f1328bd797eb147d157
parente9abbc1a02de29dbe60e1b625d540c58759b23a6 (diff)
ignore/types: add 'svelte' to the default file types
Ref: https://svelte.dev/ PR #2759
-rw-r--r--crates/ignore/src/default_types.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs
index 329d5418..ef18b766 100644
--- a/crates/ignore/src/default_types.rs
+++ b/crates/ignore/src/default_types.rs
@@ -265,6 +265,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[
(&["sql"], &["*.sql", "*.psql"]),
(&["stylus"], &["*.styl"]),
(&["sv"], &["*.v", "*.vg", "*.sv", "*.svh", "*.h"]),
+ (&["svelte"], &["*.svelte"]),
(&["svg"], &["*.svg"]),
(&["swift"], &["*.swift"]),
(&["swig"], &["*.def", "*.i"]),