pub(super) const SKIP_EXTENSIONS: &[&str] = &[
"png",
"jpg",
"jpeg",
"gif",
"bmp",
"ico",
"cur",
"icns",
"webp",
"svg",
"mp3",
"mp4",
"avi",
"mov",
"mkv",
"flac",
"wav",
"ogg",
"webm",
"tar",
"tgz",
"bz2",
"xz",
"rar",
"7z",
"exe",
"dll",
"so",
"dylib",
"o",
"a",
"lib",
"obj",
"class",
"wasm",
"pyc",
"pyo",
"elc",
"beam",
"pdf",
"doc",
"docx",
"xls",
"xlsx",
"ppt",
"pptx",
"ttf",
"otf",
"woff",
"woff2",
"eot",
"db",
"sqlite",
"sqlite3",
"iso",
"img",
"bin",
"rom",
"pickle",
"npy",
"npz",
"onnx",
"pb",
"tflite",
"pt",
"safetensors",
];
pub(super) const SKIP_DIRS: &[&str] = &[
".git",
"node_modules",
"target",
"__pycache__",
".venv",
"venv",
".tox",
"dist",
"build",
".next",
".nuxt",
"vendor",
"swagger-ui",
"swagger",
];