mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 13:00:10 -06:00
19 lines
446 B
Python
19 lines
446 B
Python
from __future__ import unicode_literals
|
|
|
|
from pre_commit.languages import helpers
|
|
from pre_commit.xargs import xargs
|
|
|
|
|
|
ENVIRONMENT_DIR = None
|
|
get_default_version = helpers.basic_get_default_version
|
|
healthy = helpers.basic_healthy
|
|
install_environment = helpers.no_install
|
|
|
|
|
|
def run_hook(prefix, hook, file_args):
|
|
return xargs(
|
|
helpers.to_cmd(hook),
|
|
file_args,
|
|
target_concurrency=helpers.target_concurrency(hook),
|
|
)
|