2025-02-09 21:33:11 +01:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2025-02-09 21:10:22 +01:00
|
|
|
from typing import Sequence
|
|
|
|
|
|
|
|
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,
|
2025-02-09 21:33:11 +01:00
|
|
|
) -> tuple[int, bytes]:
|
2025-02-09 21:10:22 +01:00
|
|
|
return helpers.run_xargs(hook, hook.cmd, file_args, color=color)
|