mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-13 20:40:08 -06:00
18 lines
482 B
Python
18 lines
482 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
|
|
|
|
|
|
def install_environment(repo_cmd_runner, version, additional_dependencies):
|
|
"""Installation for system type is a noop."""
|
|
raise AssertionError('Cannot install system repo.')
|
|
|
|
|
|
def run_hook(repo_cmd_runner, hook, file_args):
|
|
return xargs(helpers.to_cmd(hook), file_args)
|