summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatrix Dai <matrix.dai@aurea.com>2022-04-19 22:36:14 +0800
committerGitHub <noreply@github.com>2022-04-19 10:36:14 -0400
commit30ee6f08ee8e22c42ab2ef837c764f52656d025b (patch)
treee613c1d92fa3e3609209e67fdc39124c59eb34e5
parentced5b92aa93eb47e892bd2fd26ab454008721730 (diff)
ignore/types: add '*.asp' for asp type
The `*.asp` was not included in the type "asp" when it was added. https://github.com/BurntSushi/ripgrep/pull/1134 PR #2188
-rw-r--r--crates/ignore/src/default_types.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs
index 519bb4c4..8f974ade 100644
--- a/crates/ignore/src/default_types.rs
+++ b/crates/ignore/src/default_types.rs
@@ -16,7 +16,8 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("asciidoc", &["*.adoc", "*.asc", "*.asciidoc"]),
("asm", &["*.asm", "*.s", "*.S"]),
("asp", &[
- "*.aspx", "*.aspx.cs", "*.aspx.vb", "*.ascx", "*.ascx.cs", "*.ascx.vb",
+ "*.aspx", "*.aspx.cs", "*.aspx.vb", "*.ascx", "*.ascx.cs",
+ "*.ascx.vb", "*.asp"
]),
("ats", &["*.ats", "*.dats", "*.sats", "*.hats"]),
("avro", &["*.avdl", "*.avpr", "*.avsc"]),