| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- export const LANGUAGE_EXTENSIONS: Record<string, string> = {
- ".abap": "abap",
- ".bat": "bat",
- ".bib": "bibtex",
- ".bibtex": "bibtex",
- ".clj": "clojure",
- ".cljs": "clojure",
- ".cljc": "clojure",
- ".edn": "clojure",
- ".coffee": "coffeescript",
- ".c": "c",
- ".cpp": "cpp",
- ".cxx": "cpp",
- ".cc": "cpp",
- ".c++": "cpp",
- ".cs": "csharp",
- ".css": "css",
- ".d": "d",
- ".pas": "pascal",
- ".pascal": "pascal",
- ".diff": "diff",
- ".patch": "diff",
- ".dart": "dart",
- ".dockerfile": "dockerfile",
- ".ex": "elixir",
- ".exs": "elixir",
- ".erl": "erlang",
- ".ets": "typescript",
- ".hrl": "erlang",
- ".fs": "fsharp",
- ".fsi": "fsharp",
- ".fsx": "fsharp",
- ".fsscript": "fsharp",
- ".gitcommit": "git-commit",
- ".gitrebase": "git-rebase",
- ".go": "go",
- ".groovy": "groovy",
- ".gleam": "gleam",
- ".hbs": "handlebars",
- ".handlebars": "handlebars",
- ".hs": "haskell",
- ".html": "html",
- ".htm": "html",
- ".ini": "ini",
- ".java": "java",
- ".js": "javascript",
- ".jsx": "javascriptreact",
- ".json": "json",
- ".tex": "latex",
- ".latex": "latex",
- ".less": "less",
- ".lua": "lua",
- ".makefile": "makefile",
- makefile: "makefile",
- ".md": "markdown",
- ".markdown": "markdown",
- ".m": "objective-c",
- ".mm": "objective-cpp",
- ".pl": "perl",
- ".pm": "perl",
- ".pm6": "perl6",
- ".php": "php",
- ".ps1": "powershell",
- ".psm1": "powershell",
- ".pug": "jade",
- ".jade": "jade",
- ".py": "python",
- ".r": "r",
- ".cshtml": "razor",
- ".razor": "razor",
- ".rb": "ruby",
- ".rake": "ruby",
- ".gemspec": "ruby",
- ".ru": "ruby",
- ".erb": "erb",
- ".html.erb": "erb",
- ".js.erb": "erb",
- ".css.erb": "erb",
- ".json.erb": "erb",
- ".rs": "rust",
- ".scss": "scss",
- ".sass": "sass",
- ".scala": "scala",
- ".shader": "shaderlab",
- ".sh": "shellscript",
- ".bash": "shellscript",
- ".zsh": "shellscript",
- ".ksh": "shellscript",
- ".sql": "sql",
- ".svelte": "svelte",
- ".swift": "swift",
- ".ts": "typescript",
- ".tsx": "typescriptreact",
- ".mts": "typescript",
- ".cts": "typescript",
- ".mtsx": "typescriptreact",
- ".ctsx": "typescriptreact",
- ".xml": "xml",
- ".xsl": "xsl",
- ".yaml": "yaml",
- ".yml": "yaml",
- ".mjs": "javascript",
- ".cjs": "javascript",
- ".vue": "vue",
- ".zig": "zig",
- ".zon": "zig",
- ".astro": "astro",
- ".ml": "ocaml",
- ".mli": "ocaml",
- ".tf": "terraform",
- ".tfvars": "terraform-vars",
- ".hcl": "hcl",
- } as const
|