1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-12 19:18:24 +02:00

Merge pull request #62 from martinlindhe/js-wc

--type js: include more extensions
This commit is contained in:
Andrew Gallant 2016-09-25 11:10:47 -04:00 committed by GitHub
commit 2015c56e8d

View File

@ -42,7 +42,9 @@ const TYPE_EXTENSIONS: &'static [(&'static str, &'static [&'static str])] = &[
("haskell", &["*.hs", "*.lhs"]), ("haskell", &["*.hs", "*.lhs"]),
("html", &["*.htm", "*.html"]), ("html", &["*.htm", "*.html"]),
("java", &["*.java"]), ("java", &["*.java"]),
("js", &["*.js"]), ("js", &[
"*.js", "*.jsx", "*.vue",
]),
("json", &["*.json"]), ("json", &["*.json"]),
("jsonl", &["*.jsonl"]), ("jsonl", &["*.jsonl"]),
("lisp", &["*.el", "*.jl", "*.lisp", "*.lsp", "*.sc", "*.scm"]), ("lisp", &["*.el", "*.jl", "*.lisp", "*.lsp", "*.sc", "*.scm"]),