mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-04-15 10:01:46 +04:00
7 lines
202 B
Python
7 lines
202 B
Python
# -*- coding: utf-8 -*-
|
|
KNOWN_INTERPRETERS = [
|
|
('^python([23](\.[0-9]+)?)?$', ['python']),
|
|
('^(ba|da|tc|[ckz])?sh$', ['shell']),
|
|
('^ruby$', ['ruby']),
|
|
('^node(js)?$', ['javascript']),
|
|
]
|