1
0
Fork 0
identify/identify/interpreters.py
Daniel Baumann 03367abfa8
Adding upstream version 1.4.13.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-12 16:43:50 +01:00

18 lines
476 B
Python

# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
INTERPRETERS = {
'bash': {'shell', 'bash'},
'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'},
}