mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 04:50:20 -06:00
20 lines
517 B
Python
20 lines
517 B
Python
from typing import Sequence
|
|
from typing import Tuple
|
|
|
|
from pre_commit.hook import Hook
|
|
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: Hook,
|
|
file_args: Sequence[str],
|
|
color: bool,
|
|
) -> Tuple[int, bytes]:
|
|
cmd = (hook.prefix.path(hook.cmd[0]), *hook.cmd[1:])
|
|
return helpers.run_xargs(hook, cmd, file_args, color=color)
|