identify/identify/interpreters.py
Daniel Baumann e7d2ed8206
Merging upstream version 1.4.19.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-12 20:54:28 +01:00

19 lines
505 B
Python

# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
INTERPRETERS = {
'bash': {'shell', 'bash'},
'csh': {'shell', 'csh'},
'dash': {'shell', 'dash'},
'node': {'javascript'},
'nodejs': {'javascript'},
'perl': {'perl'},
'python': {'python'},
'python2': {'python', 'python2'},
'python3': {'python', 'python3'},
'ruby': {'ruby'},
'sh': {'shell', 'sh'},
'tcsh': {'shell', 'tcsh'},
'zsh': {'shell', 'zsh'},
}