mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
15 lines
389 B
Python
15 lines
389 B
Python
from __future__ import unicode_literals
|
|
|
|
from pre_commit.languages import helpers
|
|
|
|
|
|
ENVIRONMENT_DIR = None
|
|
get_default_version = helpers.basic_get_default_version
|
|
healthy = helpers.basic_healthy
|
|
install_environment = helpers.no_install
|
|
|
|
|
|
def run_hook(hook, file_args, color, progress):
|
|
return helpers.run_xargs(
|
|
hook, hook.cmd, file_args, color=color, progress=progress,
|
|
)
|