summaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
authorSimon Morgan <drguildo@users.noreply.github.com>2020-09-19 22:24:18 +0100
committerAndrew Gallant <jamslam@gmail.com>2021-05-31 21:51:18 -0400
commit121e0135c1f9cb7c950e60e8ef1ae32c775c7263 (patch)
tree56c997a91df1bdb82ace016c6544191a912caf1d /crates
parentc53c4c0ade23f639cd00c22b2e4fcba89f4f8039 (diff)
ignore/types: replace duplicate glob with *.aspx.vb
*.aspx.cs was listed twice and the VB variant is missing. Closes #1683
Diffstat (limited to 'crates')
-rw-r--r--crates/ignore/src/default_types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs
index 4ed94587..9fff888b 100644
--- a/crates/ignore/src/default_types.rs
+++ b/crates/ignore/src/default_types.rs
@@ -16,7 +16,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("asciidoc", &["*.adoc", "*.asc", "*.asciidoc"]),
("asm", &["*.asm", "*.s", "*.S"]),
("asp", &[
- "*.aspx", "*.aspx.cs", "*.aspx.cs", "*.ascx", "*.ascx.cs", "*.ascx.vb",
+ "*.aspx", "*.aspx.cs", "*.aspx.vb", "*.ascx", "*.ascx.cs", "*.ascx.vb",
]),
("ats", &["*.ats", "*.dats", "*.sats", "*.hats"]),
("avro", &["*.avdl", "*.avpr", "*.avsc"]),