Skip to content

Commit

Permalink
feat: add svelte file types as default filetype
Browse files Browse the repository at this point in the history
Added svelte filetype as default filetype, ran `cargo test -all` to confirm tests worked
Ran `rg --type-list` to convert svelte showed up
  • Loading branch information
bwilliams committed Mar 19, 2024
1 parent e9abbc1 commit 45cdd54
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/ignore/src/default_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"]),
Expand Down

0 comments on commit 45cdd54

Please sign in to comment.