feat: Update type-list for ripgrep 2acf25c

This commit is contained in:
Ed Page 2024-11-25 13:55:51 -06:00
parent 4ff772d059
commit 061bc78a48

View file

@ -24,6 +24,7 @@ pub(crate) const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("ats", &["*.ats", "*.dats", "*.sats", "*.hats"]),
("avro", &["*.avdl", "*.avpr", "*.avsc"]),
("awk", &["*.awk"]),
("bat", &["*.bat", "*.cmd"]),
("bazel", &[
"*.bazel", "*.bzl", "*.BUILD", "*.bazelrc", "BUILD", "MODULE.bazel",
"WORKSPACE", "WORKSPACE.bazel",
@ -103,7 +104,10 @@ pub(crate) const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("gn", &["*.gn", "*.gni"]),
("go", &["*.go"]),
("gprbuild", &["*.gpr"]),
("gradle", &["*.gradle"]),
("gradle", &[
"*.gradle", "*.gradle.kts", "gradle.properties", "gradle-wrapper.*",
"gradlew", "gradlew.bat",
]),
("graphql", &["*.graphql", "*.graphqls"]),
("groovy", &["*.groovy", "*.gradle"]),
("gzip", &["*.gz", "*.tgz"]),
@ -125,6 +129,7 @@ pub(crate) const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("jupyter", &["*.ipynb", "*.jpynb"]),
("k", &["*.k"]),
("kotlin", &["*.kt", "*.kts"]),
("lean", &["*.lean"]),
("less", &["*.less"]),
("license", &[
// General
@ -179,7 +184,7 @@ pub(crate) const DEFAULT_TYPES: &[(&str, &[&str])] = &[
"*.mkdn",
"*.mdx",
]),
("meson", &["meson.build", "meson_options.txt"]),
("meson", &["meson.build", "meson_options.txt", "meson.options"]),
("minified", &["*.min.html", "*.min.css", "*.min.js"]),
("mint", &["*.mint"]),
("mk", &["mkfile"]),
@ -207,6 +212,7 @@ pub(crate) const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("po", &["*.po"]),
("pod", &["*.pod"]),
("postscript", &["*.eps", "*.ps"]),
("prolog", &["*.prolog", "*.P"]),
("protobuf", &["*.proto"]),
("ps", &["*.cdxml", "*.ps1", "*.ps1xml", "*.psd1", "*.psm1"]),
("puppet", &["*.epp", "*.erb", "*.pp", "*.rb"]),
@ -278,6 +284,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"]),
@ -303,7 +310,7 @@ pub(crate) const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("txt", &["*.txt"]),
("typoscript", &["*.typoscript"]),
("usd", &["*.usd", "*.usda", "*.usdc"]),
("v", &["*.v"]),
("v", &["*.v", "*.vsh"]),
("vala", &["*.vala"]),
("vb", &["*.vb"]),
("vcl", &["*.vcl"]),
@ -313,6 +320,7 @@ pub(crate) const DEFAULT_TYPES: &[(&str, &[&str])] = &[
"*.vim", ".vimrc", ".gvimrc", "vimrc", "gvimrc", "_vimrc", "_gvimrc",
]),
("webidl", &["*.idl", "*.webidl", "*.widl"]),
("wgsl", &["*.wgsl"]),
("wiki", &["*.mediawiki", "*.wiki"]),
("xml", &[
"*.xml", "*.xml.dist", "*.dtd", "*.xsl", "*.xslt", "*.xsd", "*.xjb",