mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-04-16 02:21:46 +04:00
Added powershell support
This commit is contained in:
parent
835396c645
commit
f2e3803913
5 changed files with 43 additions and 2 deletions
21
pre_commit/languages/powershell.py
Normal file
21
pre_commit/languages/powershell.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
from __future__ import annotations
|
||||
|
||||
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,
|
||||
) -> tuple[int, bytes]: # pragma: win32 no cover
|
||||
fullpath = (hook.prefix.prefix_dir + '\\' + hook.cmd[0])
|
||||
cmd = ('pwsh', '-F') + (fullpath,)
|
||||
return helpers.run_xargs(hook, cmd, file_args, color=color)
|
||||
Loading…
Add table
Add a link
Reference in a new issue