use crate::TagSet;
pub const ALL_TAGS: [&str; 297] = [
"adobe-illustrator",
"alpm",
"apinotes",
"asar",
"asciidoc",
"ash",
"asm",
"aspectj",
"astro",
"audio",
"avif",
"avro-schema",
"awk",
"babelrc",
"bash",
"batch",
"bats",
"bazel",
"bazelrc",
"beancount",
"bib",
"binary",
"bitbake",
"bitmap",
"bowerrc",
"browserslistrc",
"bzip2",
"bzip3",
"c",
"c#",
"c#script",
"c++",
"c2hs",
"cargo",
"cargo-lock",
"cbsd",
"clojure",
"clojurescript",
"cmake",
"codespellrc",
"coffee",
"coveragerc",
"crystal",
"csh",
"cson",
"csproj",
"css",
"csslintrc",
"csv",
"cuda",
"cue",
"cylc",
"cython",
"dart",
"dash",
"dbc",
"def",
"diff",
"directory",
"dockerfile",
"dockerignore",
"dotenv",
"dtd",
"editorconfig",
"edn",
"ejs",
"ejson",
"elixir",
"elm",
"eot",
"eps",
"erb",
"erlang",
"executable",
"expect",
"f#",
"f#script",
"file",
"fish",
"fits",
"flake8",
"fortran",
"fsproj",
"gdscript",
"geojson",
"ggb",
"gherkin",
"gif",
"gitattributes",
"gitconfig",
"gitignore",
"gitlint",
"gitmodules",
"gleam",
"go",
"go-mod",
"go-sum",
"gotmpl",
"gpx",
"graphql",
"groovy",
"gyb",
"gyp",
"gzip",
"handlebars",
"haskell",
"hcl",
"header",
"hgrc",
"html",
"icalendar",
"icns",
"icon",
"idl",
"idris",
"image",
"inc",
"ini",
"inl",
"ino",
"inx",
"ipxe",
"isort",
"jade",
"jar",
"java",
"java-properties",
"javascript",
"jenkins",
"jinja",
"jpeg",
"jshintrc",
"json",
"json5",
"jsonld",
"jsonnet",
"jsx",
"julia",
"jupyter",
"kml",
"kotlin",
"ksh",
"lazarus",
"lazarus-form",
"lean",
"lektor",
"lektorproject",
"less",
"liquid",
"literate-haskell",
"lua",
"m4",
"magik",
"mailmap",
"makefile",
"manifest",
"map",
"markdown",
"mdx",
"mention-bot",
"meson",
"meson-options",
"metal",
"mib",
"modulemap",
"msbuild",
"musescore",
"mustache",
"myst",
"ngdoc",
"nim",
"nimble",
"nix",
"non-executable",
"npmignore",
"nunjucks",
"objective-c",
"objective-c++",
"ocaml",
"otf",
"p12",
"pascal",
"pdbrc",
"pdf",
"pem",
"perl",
"php",
"php7",
"php8",
"piskel",
"pkgbuild",
"plain-text",
"plantuml",
"plist",
"png",
"pofile",
"pom",
"powershell",
"ppm",
"prettierignore",
"prisma",
"proto",
"pug",
"puppet",
"purescript",
"pyi",
"pylintrc",
"pypirc",
"pyproj",
"python",
"python2",
"python3",
"pyz",
"qml",
"r",
"relax-ng",
"resx",
"robot",
"rst",
"ruby",
"rust",
"salt",
"salt-lint",
"sas",
"sass",
"sbt",
"scala",
"scheme",
"scss",
"sh",
"shell",
"sln",
"socket",
"solidity",
"spec",
"sql",
"stylus",
"svelte",
"svg",
"swf",
"swift",
"swiftdeps",
"symlink",
"system-verilog",
"tar",
"tcsh",
"templ",
"terraform",
"tex",
"text",
"textproto",
"thrift",
"tiff",
"tiltfile",
"toml",
"ts",
"tsv",
"tsx",
"ttf",
"twig",
"twisted",
"txsprofile",
"urdf",
"vb",
"vbproj",
"vcxproj",
"vdx",
"verilog",
"vhdl",
"vim",
"vtl",
"vue",
"wav",
"webp",
"wheel",
"wkt",
"woff",
"woff2",
"wsdl",
"wsgi",
"xacro",
"xhtml",
"xliff",
"xml",
"xquery",
"xsd",
"xsl",
"yaml",
"yamlld",
"yamllint",
"yang",
"yin",
"zcml",
"zig",
"zip",
"zpt",
"zsh",
];
pub const TAG_FILE: u16 = 77;
pub const TAG_DIRECTORY: u16 = 58;
pub const TAG_SYMLINK: u16 = 242;
pub const TAG_SOCKET: u16 = 232;
pub const TAG_EXECUTABLE: u16 = 73;
pub const TAG_NON_EXECUTABLE: u16 = 173;
pub const TAG_TEXT: u16 = 249;
pub const TAG_BINARY: u16 = 21;
pub const TAG_SET_FILE: TagSet = TagSet::new(&[77]);
pub const TAG_SET_DIRECTORY: TagSet = TagSet::new(&[58]);
pub const TAG_SET_SYMLINK: TagSet = TagSet::new(&[242]);
pub const TAG_SET_SOCKET: TagSet = TagSet::new(&[232]);
pub const TAG_SET_TEXT: TagSet = TagSet::new(&[249]);
pub const TAG_SET_TEXT_OR_BINARY: TagSet = TagSet::new(&[21, 249]);
pub const TAG_SET_EXECUTABLE_TEXT: TagSet = TagSet::new(&[73, 249]);
pub const TAG_SET_JSON: TagSet = TagSet::new(&[132]);
pub const TAG_SET_JSON5: TagSet = TagSet::new(&[133]);
pub const TAG_SET_TOML: TagSet = TagSet::new(&[254]);
pub const TAG_SET_XML: TagSet = TagSet::new(&[283]);
pub const TAG_SET_YAML: TagSet = TagSet::new(&[287]);
pub const INTERPRETERS: phf::Map<&str, TagSet> = phf::phf_map! {
"ash" => TagSet::new(&[5, 230]),
"awk" => TagSet::new(&[12]),
"bash" => TagSet::new(&[14, 230]),
"bats" => TagSet::new(&[14, 16, 230]),
"cbsd" => TagSet::new(&[35, 230]),
"csh" => TagSet::new(&[43, 230]),
"dash" => TagSet::new(&[54, 230]),
"expect" => TagSet::new(&[74]),
"ksh" => TagSet::new(&[141, 230]),
"node" => TagSet::new(&[127]),
"nodejs" => TagSet::new(&[127]),
"perl" => TagSet::new(&[185]),
"php" => TagSet::new(&[186]),
"php7" => TagSet::new(&[186, 187]),
"php8" => TagSet::new(&[186, 188]),
"python" => TagSet::new(&[209]),
"python2" => TagSet::new(&[209, 210]),
"python3" => TagSet::new(&[209, 211]),
"ruby" => TagSet::new(&[219]),
"sh" => TagSet::new(&[229, 230]),
"tcsh" => TagSet::new(&[230, 245]),
"zsh" => TagSet::new(&[230, 296]),
};
pub const EXTENSIONS: phf::Map<&str, TagSet> = phf::phf_map! {
"adoc" => TagSet::new(&[4, 249]),
"ai" => TagSet::new(&[0, 21]),
"aj" => TagSet::new(&[7, 249]),
"apinotes" => TagSet::new(&[2, 249]),
"asar" => TagSet::new(&[3, 21]),
"asciidoc" => TagSet::new(&[4, 249]),
"asm" => TagSet::new(&[6, 249]),
"astro" => TagSet::new(&[8, 249]),
"avif" => TagSet::new(&[10, 21, 115]),
"avsc" => TagSet::new(&[11, 249]),
"bash" => TagSet::new(&[14, 230, 249]),
"bat" => TagSet::new(&[15, 249]),
"bats" => TagSet::new(&[14, 16, 230, 249]),
"bazel" => TagSet::new(&[17, 249]),
"bb" => TagSet::new(&[22, 249]),
"bbappend" => TagSet::new(&[22, 249]),
"bbclass" => TagSet::new(&[22, 249]),
"beancount" => TagSet::new(&[19, 249]),
"bib" => TagSet::new(&[20, 249]),
"bmp" => TagSet::new(&[21, 23, 115]),
"bz2" => TagSet::new(&[21, 26]),
"bz3" => TagSet::new(&[21, 27]),
"bzl" => TagSet::new(&[17, 249]),
"c" => TagSet::new(&[28, 249]),
"c++" => TagSet::new(&[31, 249]),
"c++m" => TagSet::new(&[31, 249]),
"cc" => TagSet::new(&[31, 249]),
"ccm" => TagSet::new(&[31, 249]),
"cfg" => TagSet::new(&[249]),
"chs" => TagSet::new(&[32, 249]),
"cjs" => TagSet::new(&[127, 249]),
"clj" => TagSet::new(&[36, 249]),
"cljc" => TagSet::new(&[36, 249]),
"cljs" => TagSet::new(&[36, 37, 249]),
"cmake" => TagSet::new(&[38, 249]),
"cnf" => TagSet::new(&[249]),
"coffee" => TagSet::new(&[40, 249]),
"conf" => TagSet::new(&[249]),
"cpp" => TagSet::new(&[31, 249]),
"cppm" => TagSet::new(&[31, 249]),
"cr" => TagSet::new(&[42, 249]),
"crt" => TagSet::new(&[184, 249]),
"cs" => TagSet::new(&[29, 249]),
"csh" => TagSet::new(&[43, 230, 249]),
"cson" => TagSet::new(&[44, 249]),
"csproj" => TagSet::new(&[45, 165, 249, 283]),
"css" => TagSet::new(&[46, 249]),
"csv" => TagSet::new(&[48, 249]),
"csx" => TagSet::new(&[29, 30, 249]),
"cu" => TagSet::new(&[49, 249]),
"cue" => TagSet::new(&[50, 249]),
"cuh" => TagSet::new(&[49, 249]),
"cxx" => TagSet::new(&[31, 249]),
"cxxm" => TagSet::new(&[31, 249]),
"cylc" => TagSet::new(&[51, 249]),
"dart" => TagSet::new(&[53, 249]),
"dbc" => TagSet::new(&[55, 249]),
"def" => TagSet::new(&[56, 249]),
"dll" => TagSet::new(&[21]),
"dtd" => TagSet::new(&[62, 249]),
"ear" => TagSet::new(&[21, 124, 294]),
"edn" => TagSet::new(&[36, 64, 249]),
"ejs" => TagSet::new(&[65, 249]),
"ejson" => TagSet::new(&[66, 132, 249]),
"elm" => TagSet::new(&[68, 249]),
"env" => TagSet::new(&[61, 249]),
"eot" => TagSet::new(&[21, 69]),
"eps" => TagSet::new(&[21, 70]),
"erb" => TagSet::new(&[71, 249]),
"erl" => TagSet::new(&[72, 249]),
"ex" => TagSet::new(&[67, 249]),
"exe" => TagSet::new(&[21]),
"exs" => TagSet::new(&[67, 249]),
"eyaml" => TagSet::new(&[249, 287]),
"f03" => TagSet::new(&[81, 249]),
"f08" => TagSet::new(&[81, 249]),
"f90" => TagSet::new(&[81, 249]),
"f95" => TagSet::new(&[81, 249]),
"feature" => TagSet::new(&[86, 249]),
"fish" => TagSet::new(&[78, 249]),
"fits" => TagSet::new(&[21, 79]),
"fs" => TagSet::new(&[75, 249]),
"fsproj" => TagSet::new(&[82, 165, 249, 283]),
"fsx" => TagSet::new(&[75, 76, 249]),
"gd" => TagSet::new(&[83, 249]),
"gemspec" => TagSet::new(&[219, 249]),
"geojson" => TagSet::new(&[84, 132, 249]),
"ggb" => TagSet::new(&[21, 85, 294]),
"gif" => TagSet::new(&[21, 87, 115]),
"gleam" => TagSet::new(&[93, 249]),
"go" => TagSet::new(&[94, 249]),
"gotmpl" => TagSet::new(&[97, 249]),
"gpx" => TagSet::new(&[98, 249, 283]),
"gradle" => TagSet::new(&[100, 249]),
"graphql" => TagSet::new(&[99, 249]),
"groovy" => TagSet::new(&[100, 249]),
"gyb" => TagSet::new(&[101, 249]),
"gyp" => TagSet::new(&[102, 209, 249]),
"gypi" => TagSet::new(&[102, 209, 249]),
"gz" => TagSet::new(&[21, 103]),
"h" => TagSet::new(&[28, 31, 107, 249]),
"hbs" => TagSet::new(&[104, 249]),
"hcl" => TagSet::new(&[106, 249]),
"hh" => TagSet::new(&[31, 107, 249]),
"hpp" => TagSet::new(&[31, 107, 249]),
"hrl" => TagSet::new(&[72, 249]),
"hs" => TagSet::new(&[105, 249]),
"htm" => TagSet::new(&[109, 249]),
"html" => TagSet::new(&[109, 249]),
"hxx" => TagSet::new(&[31, 107, 249]),
"icns" => TagSet::new(&[21, 111]),
"ico" => TagSet::new(&[21, 112]),
"ics" => TagSet::new(&[110, 249]),
"idl" => TagSet::new(&[113, 249]),
"idr" => TagSet::new(&[114, 249]),
"inc" => TagSet::new(&[116, 249]),
"ini" => TagSet::new(&[117, 249]),
"inl" => TagSet::new(&[31, 118, 249]),
"ino" => TagSet::new(&[31, 119, 249]),
"inx" => TagSet::new(&[120, 249, 283]),
"ipp" => TagSet::new(&[31, 249]),
"ipxe" => TagSet::new(&[121, 249]),
"ipynb" => TagSet::new(&[132, 138, 249]),
"ixx" => TagSet::new(&[31, 249]),
"j2" => TagSet::new(&[129, 249]),
"jade" => TagSet::new(&[123, 249]),
"jar" => TagSet::new(&[21, 124, 294]),
"java" => TagSet::new(&[125, 249]),
"jenkins" => TagSet::new(&[100, 128, 249]),
"jenkinsfile" => TagSet::new(&[100, 128, 249]),
"jinja" => TagSet::new(&[129, 249]),
"jinja2" => TagSet::new(&[129, 249]),
"jl" => TagSet::new(&[137, 249]),
"jpeg" => TagSet::new(&[21, 115, 130]),
"jpg" => TagSet::new(&[21, 115, 130]),
"js" => TagSet::new(&[127, 249]),
"json" => TagSet::new(&[132, 249]),
"json5" => TagSet::new(&[133, 249]),
"jsonld" => TagSet::new(&[132, 134, 249]),
"jsonnet" => TagSet::new(&[135, 249]),
"jsx" => TagSet::new(&[136, 249]),
"key" => TagSet::new(&[184, 249]),
"kml" => TagSet::new(&[139, 249, 283]),
"kt" => TagSet::new(&[140, 249]),
"kts" => TagSet::new(&[140, 249]),
"lean" => TagSet::new(&[144, 249]),
"lektorproject" => TagSet::new(&[117, 146, 249]),
"less" => TagSet::new(&[147, 249]),
"lfm" => TagSet::new(&[142, 143, 249]),
"lhs" => TagSet::new(&[149, 249]),
"libsonnet" => TagSet::new(&[135, 249]),
"lidr" => TagSet::new(&[114, 249]),
"liquid" => TagSet::new(&[148, 249]),
"lpi" => TagSet::new(&[142, 249, 283]),
"lpr" => TagSet::new(&[142, 181, 249]),
"lr" => TagSet::new(&[145, 249]),
"lua" => TagSet::new(&[150, 249]),
"m" => TagSet::new(&[176, 249]),
"m4" => TagSet::new(&[151, 249]),
"magik" => TagSet::new(&[152, 249]),
"make" => TagSet::new(&[154, 249]),
"manifest" => TagSet::new(&[155, 249]),
"map" => TagSet::new(&[156, 249]),
"markdown" => TagSet::new(&[157, 249]),
"md" => TagSet::new(&[157, 249]),
"mdx" => TagSet::new(&[158, 249]),
"meson" => TagSet::new(&[160, 249]),
"metal" => TagSet::new(&[162, 249]),
"mib" => TagSet::new(&[163, 249]),
"mjs" => TagSet::new(&[127, 249]),
"mk" => TagSet::new(&[154, 249]),
"ml" => TagSet::new(&[178, 249]),
"mli" => TagSet::new(&[178, 249]),
"mm" => TagSet::new(&[31, 177, 249]),
"modulemap" => TagSet::new(&[164, 249]),
"mscx" => TagSet::new(&[166, 249, 283]),
"mscz" => TagSet::new(&[21, 166, 294]),
"mustache" => TagSet::new(&[167, 249]),
"myst" => TagSet::new(&[168, 249]),
"ngdoc" => TagSet::new(&[169, 249]),
"nim" => TagSet::new(&[170, 249]),
"nimble" => TagSet::new(&[171, 249]),
"nims" => TagSet::new(&[170, 249]),
"nix" => TagSet::new(&[172, 249]),
"njk" => TagSet::new(&[175, 249]),
"otf" => TagSet::new(&[21, 179]),
"p12" => TagSet::new(&[21, 180]),
"pas" => TagSet::new(&[181, 249]),
"patch" => TagSet::new(&[57, 249]),
"pdf" => TagSet::new(&[21, 183]),
"pem" => TagSet::new(&[184, 249]),
"php" => TagSet::new(&[186, 249]),
"php4" => TagSet::new(&[186, 249]),
"php5" => TagSet::new(&[186, 249]),
"phtml" => TagSet::new(&[186, 249]),
"piskel" => TagSet::new(&[132, 189, 249]),
"pl" => TagSet::new(&[185, 249]),
"plantuml" => TagSet::new(&[192, 249]),
"plist" => TagSet::new(&[193]),
"pm" => TagSet::new(&[185, 249]),
"png" => TagSet::new(&[21, 115, 194]),
"po" => TagSet::new(&[195, 249]),
"pom" => TagSet::new(&[196, 249, 283]),
"pp" => TagSet::new(&[203, 249]),
"ppm" => TagSet::new(&[115, 198]),
"prisma" => TagSet::new(&[200, 249]),
"properties" => TagSet::new(&[126, 249]),
"props" => TagSet::new(&[165, 249, 283]),
"proto" => TagSet::new(&[201, 249]),
"ps1" => TagSet::new(&[197, 249]),
"psd1" => TagSet::new(&[197, 249]),
"psm1" => TagSet::new(&[197, 249]),
"pug" => TagSet::new(&[202, 249]),
"puml" => TagSet::new(&[192, 249]),
"purs" => TagSet::new(&[204, 249]),
"pxd" => TagSet::new(&[52, 249]),
"pxi" => TagSet::new(&[52, 249]),
"py" => TagSet::new(&[209, 249]),
"pyi" => TagSet::new(&[205, 249]),
"pyproj" => TagSet::new(&[165, 208, 249, 283]),
"pyt" => TagSet::new(&[209, 249]),
"pyx" => TagSet::new(&[52, 249]),
"pyz" => TagSet::new(&[21, 212]),
"pyzw" => TagSet::new(&[21, 212]),
"qml" => TagSet::new(&[213, 249]),
"r" => TagSet::new(&[214, 249]),
"rake" => TagSet::new(&[219, 249]),
"rb" => TagSet::new(&[219, 249]),
"resx" => TagSet::new(&[216, 249, 283]),
"rng" => TagSet::new(&[215, 249, 283]),
"robot" => TagSet::new(&[217, 249]),
"rs" => TagSet::new(&[220, 249]),
"rst" => TagSet::new(&[218, 249]),
"s" => TagSet::new(&[6, 249]),
"sas" => TagSet::new(&[223, 249]),
"sass" => TagSet::new(&[224, 249]),
"sbt" => TagSet::new(&[225, 226, 249]),
"sc" => TagSet::new(&[226, 249]),
"scala" => TagSet::new(&[226, 249]),
"scm" => TagSet::new(&[227, 249]),
"scss" => TagSet::new(&[228, 249]),
"sh" => TagSet::new(&[230, 249]),
"sln" => TagSet::new(&[231, 249]),
"sls" => TagSet::new(&[221, 249]),
"so" => TagSet::new(&[21]),
"sol" => TagSet::new(&[233, 249]),
"spec" => TagSet::new(&[234, 249]),
"sql" => TagSet::new(&[235, 249]),
"ss" => TagSet::new(&[227, 249]),
"sty" => TagSet::new(&[248, 249]),
"styl" => TagSet::new(&[236, 249]),
"sv" => TagSet::new(&[243, 249]),
"svelte" => TagSet::new(&[237, 249]),
"svg" => TagSet::new(&[115, 238, 249, 283]),
"svh" => TagSet::new(&[243, 249]),
"swf" => TagSet::new(&[21, 239]),
"swift" => TagSet::new(&[240, 249]),
"swiftdeps" => TagSet::new(&[241, 249]),
"tac" => TagSet::new(&[209, 249, 260]),
"tar" => TagSet::new(&[21, 244]),
"targets" => TagSet::new(&[165, 249, 283]),
"templ" => TagSet::new(&[246, 249]),
"tex" => TagSet::new(&[248, 249]),
"textproto" => TagSet::new(&[249, 250]),
"tf" => TagSet::new(&[247, 249]),
"tfvars" => TagSet::new(&[247, 249]),
"tgz" => TagSet::new(&[21, 103]),
"thrift" => TagSet::new(&[249, 251]),
"tiff" => TagSet::new(&[21, 115, 252]),
"toml" => TagSet::new(&[249, 254]),
"tpp" => TagSet::new(&[31, 249]),
"ts" => TagSet::new(&[249, 255]),
"tsv" => TagSet::new(&[249, 256]),
"tsx" => TagSet::new(&[249, 257]),
"ttf" => TagSet::new(&[21, 258]),
"twig" => TagSet::new(&[249, 259]),
"txsprofile" => TagSet::new(&[117, 249, 261]),
"txt" => TagSet::new(&[191, 249]),
"txtpb" => TagSet::new(&[249, 250]),
"urdf" => TagSet::new(&[249, 262, 283]),
"v" => TagSet::new(&[249, 267]),
"vb" => TagSet::new(&[249, 263]),
"vbproj" => TagSet::new(&[165, 249, 264, 283]),
"vcxproj" => TagSet::new(&[165, 249, 265, 283]),
"vdx" => TagSet::new(&[249, 266]),
"vh" => TagSet::new(&[249, 267]),
"vhd" => TagSet::new(&[249, 268]),
"vim" => TagSet::new(&[249, 269]),
"vtl" => TagSet::new(&[249, 270]),
"vue" => TagSet::new(&[249, 271]),
"war" => TagSet::new(&[21, 124, 294]),
"wav" => TagSet::new(&[9, 21, 272]),
"webp" => TagSet::new(&[21, 115, 273]),
"whl" => TagSet::new(&[21, 274, 294]),
"wkt" => TagSet::new(&[249, 275]),
"woff" => TagSet::new(&[21, 276]),
"woff2" => TagSet::new(&[21, 277]),
"wsdl" => TagSet::new(&[249, 278, 283]),
"wsgi" => TagSet::new(&[209, 249, 279]),
"xacro" => TagSet::new(&[249, 262, 280, 283]),
"xctestplan" => TagSet::new(&[132, 249]),
"xhtml" => TagSet::new(&[109, 249, 281, 283]),
"xlf" => TagSet::new(&[249, 282, 283]),
"xliff" => TagSet::new(&[249, 282, 283]),
"xml" => TagSet::new(&[249, 283]),
"xq" => TagSet::new(&[249, 284]),
"xql" => TagSet::new(&[249, 284]),
"xqm" => TagSet::new(&[249, 284]),
"xqu" => TagSet::new(&[249, 284]),
"xquery" => TagSet::new(&[249, 284]),
"xqy" => TagSet::new(&[249, 284]),
"xsd" => TagSet::new(&[249, 283, 285]),
"xsl" => TagSet::new(&[249, 283, 286]),
"xslt" => TagSet::new(&[249, 283, 286]),
"yaml" => TagSet::new(&[249, 287]),
"yamlld" => TagSet::new(&[249, 287, 288]),
"yang" => TagSet::new(&[249, 290]),
"yin" => TagSet::new(&[249, 283, 291]),
"yml" => TagSet::new(&[249, 287]),
"zcml" => TagSet::new(&[249, 283, 292]),
"zig" => TagSet::new(&[249, 293]),
"zip" => TagSet::new(&[21, 294]),
"zpt" => TagSet::new(&[249, 295]),
"zsh" => TagSet::new(&[230, 249, 296]),
};
pub const NAMES: phf::Map<&str, TagSet> = phf::phf_map! {
".ansible-lint" => TagSet::new(&[249, 287]),
".babelrc" => TagSet::new(&[13, 132, 249]),
".bash_aliases" => TagSet::new(&[14, 230, 249]),
".bash_profile" => TagSet::new(&[14, 230, 249]),
".bashrc" => TagSet::new(&[14, 230, 249]),
".bazelrc" => TagSet::new(&[18, 249]),
".bowerrc" => TagSet::new(&[24, 132, 249]),
".browserslistrc" => TagSet::new(&[25, 249]),
".clang-format" => TagSet::new(&[249, 287]),
".clang-tidy" => TagSet::new(&[249, 287]),
".codespellrc" => TagSet::new(&[39, 117, 249]),
".coveragerc" => TagSet::new(&[41, 117, 249]),
".cshrc" => TagSet::new(&[43, 230, 249]),
".csslintrc" => TagSet::new(&[47, 132, 249]),
".dockerignore" => TagSet::new(&[60, 249]),
".editorconfig" => TagSet::new(&[63, 249]),
".envrc" => TagSet::new(&[14, 230, 249]),
".flake8" => TagSet::new(&[80, 117, 249]),
".gitattributes" => TagSet::new(&[88, 249]),
".gitconfig" => TagSet::new(&[89, 117, 249]),
".gitignore" => TagSet::new(&[90, 249]),
".gitlint" => TagSet::new(&[91, 117, 249]),
".gitmodules" => TagSet::new(&[92, 249]),
".hgrc" => TagSet::new(&[108, 117, 249]),
".isort.cfg" => TagSet::new(&[117, 122, 249]),
".jshintrc" => TagSet::new(&[131, 132, 249]),
".mailmap" => TagSet::new(&[153, 249]),
".mention-bot" => TagSet::new(&[132, 159, 249]),
".npmignore" => TagSet::new(&[174, 249]),
".pdbrc" => TagSet::new(&[182, 209, 249]),
".prettierignore" => TagSet::new(&[90, 199, 249]),
".pypirc" => TagSet::new(&[117, 207, 249]),
".rstcheck.cfg" => TagSet::new(&[117, 249]),
".salt-lint" => TagSet::new(&[222, 249, 287]),
".sqlfluff" => TagSet::new(&[117, 249]),
".yamllint" => TagSet::new(&[249, 287, 289]),
".zlogin" => TagSet::new(&[230, 249, 296]),
".zlogout" => TagSet::new(&[230, 249, 296]),
".zprofile" => TagSet::new(&[230, 249, 296]),
".zshenv" => TagSet::new(&[230, 249, 296]),
".zshrc" => TagSet::new(&[230, 249, 296]),
"AUTHORS" => TagSet::new(&[191, 249]),
"BUILD" => TagSet::new(&[17, 249]),
"CHANGELOG" => TagSet::new(&[191, 249]),
"CMakeLists.txt" => TagSet::new(&[38, 249]),
"CONTRIBUTING" => TagSet::new(&[191, 249]),
"COPYING" => TagSet::new(&[191, 249]),
"Cargo.lock" => TagSet::new(&[34, 249, 254]),
"Cargo.toml" => TagSet::new(&[33, 249, 254]),
"Containerfile" => TagSet::new(&[59, 249]),
"Dockerfile" => TagSet::new(&[59, 249]),
"GNUmakefile" => TagSet::new(&[154, 249]),
"Gemfile" => TagSet::new(&[219, 249]),
"Gemfile.lock" => TagSet::new(&[249]),
"Jenkinsfile" => TagSet::new(&[100, 128, 249]),
"LICENSE" => TagSet::new(&[191, 249]),
"MAINTAINERS" => TagSet::new(&[191, 249]),
"Makefile" => TagSet::new(&[154, 249]),
"NEWS" => TagSet::new(&[191, 249]),
"NOTICE" => TagSet::new(&[191, 249]),
"PATENTS" => TagSet::new(&[191, 249]),
"PKGBUILD" => TagSet::new(&[1, 14, 190, 230, 249]),
"Pipfile" => TagSet::new(&[249, 254]),
"Pipfile.lock" => TagSet::new(&[132, 249]),
"README" => TagSet::new(&[191, 249]),
"Rakefile" => TagSet::new(&[219, 249]),
"Tiltfile" => TagSet::new(&[249, 253]),
"Vagrantfile" => TagSet::new(&[219, 249]),
"WORKSPACE" => TagSet::new(&[17, 249]),
"bblayers.conf" => TagSet::new(&[22, 249]),
"bitbake.conf" => TagSet::new(&[22, 249]),
"config.ru" => TagSet::new(&[219, 249]),
"copy.bara.sky" => TagSet::new(&[17, 249]),
"direnvrc" => TagSet::new(&[14, 230, 249]),
"go.mod" => TagSet::new(&[95, 249]),
"go.sum" => TagSet::new(&[96, 249]),
"makefile" => TagSet::new(&[154, 249]),
"meson.build" => TagSet::new(&[160, 249]),
"meson.options" => TagSet::new(&[160, 161, 249]),
"meson_options.txt" => TagSet::new(&[160, 161, 249]),
"poetry.lock" => TagSet::new(&[249, 254]),
"pom.xml" => TagSet::new(&[196, 249, 283]),
"pylintrc" => TagSet::new(&[117, 206, 249]),
"rebar.config" => TagSet::new(&[72, 249]),
"setup.cfg" => TagSet::new(&[117, 249]),
"sys.config" => TagSet::new(&[72, 249]),
"sys.config.src" => TagSet::new(&[72, 249]),
"wscript" => TagSet::new(&[209, 249]),
};