From 121e0135c1f9cb7c950e60e8ef1ae32c775c7263 Mon Sep 17 00:00:00 2001 From: Simon Morgan Date: Sat, 19 Sep 2020 22:24:18 +0100 Subject: [PATCH] ignore/types: replace duplicate glob with *.aspx.vb *.aspx.cs was listed twice and the VB variant is missing. Closes #1683 --- CHANGELOG.md | 4 ++-- crates/ignore/src/default_types.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c62897b4..c932c0fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,8 +29,8 @@ Security fixes: Feature enhancements: -* Added or improved file type filtering for Bazel, dvc, FlatBuffers, Futhark, - minified files, Mint, pofiles (from GNU gettext) Racket, VCL, Yang +* Added or improved file type filtering for ASP, Bazel, dvc, FlatBuffers, + Futhark, minified files, Mint, pofiles (from GNU gettext) Racket, VCL, Yang. * [FEATURE #1404](https://github.com/BurntSushi/ripgrep/pull/1404): ripgrep now prints a warning if nothing is searched. * [FEATURE #1680](https://github.com/BurntSushi/ripgrep/pull/1680): 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"]),