SXXXXXXX_PyUCC/pyucc/config/languages.py
VALLONGOL 4fdd646d60 Chore: Stop tracking files based on .gitignore update.
Untracked files matching the following rules:
- Rule "*.zip": 1 file
2025-11-24 10:15:59 +01:00

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"],
}