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",
]);
