mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-04-15 18:11:48 +04:00
6 lines
178 B
Python
6 lines
178 B
Python
KNOWN_INTERPRETERS = [
|
|
('^python([23](\.[0-9]+)?)?$', ['python']),
|
|
('^(ba|da|tc|[ckz])?sh$', ['shell']),
|
|
('^ruby$', ['ruby']),
|
|
('^node(js)?$', ['javascript']),
|
|
]
|