14 lines
403 B
Python
14 lines
403 B
Python
# Mapping from human language names to common file extensions
|
|
LANGUAGE_EXTENSIONS = {
|
|
"Python": [".py", ".pyw"],
|
|
"C": [".c", ".h"],
|
|
"C++": [".cpp", ".cc", ".cxx", ".hpp", ".hh", ".inl"],
|
|
"Java": [".java"],
|
|
"JavaScript": [".js", ".mjs", ".cjs", ".jsx"],
|
|
"HTML": [".html", ".htm"],
|
|
"Shell": [".sh"],
|
|
"TypeScript": [".ts", ".tsx"],
|
|
"Go": [".go"],
|
|
"Rust": [".rs"],
|
|
}
|