Files
MollyAudit/audit/language.py

10 lines
205 B
Python

LANGUAGE = {
'c': ['.c'],
'c++': ['.cc', '.cpp'],
'go': ['.go'],
'php': ['php', 'php3', 'php4', 'php5', 'phtml'],
'java': ['.java'],
'python': ['.py'],
'javascript': ['.js'],
}