context-dump
Version:
An interactive CLI tool to create AI-friendly context from selected files.
45 lines (44 loc) • 445 B
text/typescript
export const textFileExtensions = new Set([
// languages
"ts",
"js",
"jsx",
"tsx",
"py",
"rb",
"php",
"java",
"cpp",
"c",
"h",
"cs",
"go",
"rs",
// web
"html",
"css",
"scss",
"sass",
"less",
// configs
"json",
"yml",
"yaml",
"toml",
"ini",
"env",
// docs
"md",
"txt",
"rst",
"asciidoc",
// scripts
"sh",
"bash",
"zsh",
// common
"xml",
"svg",
"csv",
"log",
]);