Add pre-commit

Modified from rejected https://github.com/pre-commit/pre-commit/pull/2506
This commit is contained in:
Wu Zhenyu 2024-01-19 23:42:34 +08:00
parent f7c3173886
commit 42c6d28610
No known key found for this signature in database
GPG Key ID: 0E07E1F8C0EC10AD
1 changed files with 207 additions and 0 deletions

207
src/_pre-commit Normal file
View File

@ -0,0 +1,207 @@
#compdef pre-commit
# ------------------------------------------------------------------------------
# Description
# -----------
#
# Completion script for pre-commit (https://github.com/pre-commit/pre-commit/).
# Modified from rejected https://github.com/pre-commit/pre-commit/pull/2506
#
# ------------------------------------------------------------------------------
# Authors
# -------
#
# * Wu Zhenyu <wuzhenyu@ustc.edu>
#
# ------------------------------------------------------------------------------
_pre_commit_commands() {
local _commands=(
"autoupdate:Auto-update pre-commit config to the latest repos' versions"
"clean:Clean out pre-commit files"
"gc:Clean unused cached repos"
"help:Show help for a specific command"
"init-templatedir:Install hook script in a directory intended for use with \`git config init.templateDir\`"
"install:Install the pre-commit script"
"install-hooks:Install hook environments for all environments in the config file. You may find \`pre-commit install --install-hooks\` more useful"
"migrate-config:Migrate list configuration to new map configuration"
"run:Run hooks"
"sample-config:Produce a sample .pre-commit-config.yaml file"
"try-repo:Try the hooks in a repository, useful for developing new hooks"
"uninstall:Uninstall the pre-commit script"
"validate-config:Validate .pre-commit-config.yaml files"
"validate-manifest:Validate .pre-commit-hooks.yaml files"
)
_describe 'pre-commit commands' _commands
}
_pre_commit_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"(- : *)"{-V,--version}"[show program\'s version number and exit]"
)
_pre_commit_autoupdate_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
{-c,--config}"[Path to alternate config file]:config:_files -g '*.yaml'"
"--bleeding-edge[Update to the bleeding edge of \`HEAD\` instead of the latest tagged version (the default behavior).]"
"--freeze[Store \"frozen\" hashes in \`rev\` instead of tag names]"
"*--repo[Only update this repository -- may be specified multiple times.]:repos:"
)
_pre_commit_clean_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
)
_pre_commit_gc_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
)
_pre_commit_help_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
":Command to show help for.:"
)
_pre_commit_init_templatedir_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
{-c,--config}"[Path to alternate config file]:config:_files -g '*.yaml'"
"--no-allow-missing-config[Assume cloned repos should have a \`pre-commit\` config.]"
"*"{-t,--hook-type}"[]:hook_types:(pre-commit pre-merge-commit pre-push prepare-commit-msg commit-msg post-commit post-checkout post-merge post-rewrite)"
":The directory in which to write the hook script.:_files -/"
)
_pre_commit_install_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
{-c,--config}"[Path to alternate config file]:config:_files -g '*.yaml'"
{-f,--overwrite}"[Overwrite existing hooks \/ remove migration mode.]"
"--install-hooks[Whether to install hook environments for all environments in the config file.]"
"*"{-t,--hook-type}"[]:hook_types:(pre-commit pre-merge-commit pre-push prepare-commit-msg commit-msg post-commit post-checkout post-merge post-rewrite)"
"--allow-missing-config[Whether to allow a missing \`pre-commit\` configuration file or exit with a failure code.]"
)
_pre_commit_install_hooks_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
{-c,--config}"[Path to alternate config file]:config:_files -g '*.yaml'"
)
_pre_commit_migrate_config_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
{-c,--config}"[Path to alternate config file]:config:_files -g '*.yaml'"
)
_pre_commit_run_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
{-c,--config}"[Path to alternate config file]:config:_files -g '*.yaml'"
{--verbose,-v}"[]"
{--all-files,-a}"[Run on all the files in the repo.]"
"--files[Specific filenames to run hooks on.]:files:_files"
"--show-diff-on-failure[When hooks fail, run \`git diff\` directly afterward.]"
"--hook-stage[The stage during which the hook is fired. One of \%(choices)s]:hook_stage:(commit merge-commit prepare-commit-msg commit-msg post-commit manual post-checkout push post-merge post-rewrite)"
"--remote-branch[Remote branch ref used by \`git push\`.]:remote_branch:"
"--local-branch[Local branch ref used by \`git push\`.]:local_branch:"
{--from-ref,--source,-s}"[(for usage with \`--to-ref\`) -- this option represents the original ref in a \`from_ref...to_ref\` diff expression. For \`pre-push\` hooks, this represents the branch you are pushing to. For \`post-checkout\` hooks, this represents the branch that was previously checked out.]:from_ref:"
{--to-ref,--origin,-o}"[(for usage with \`--from-ref\`) -- this option represents the destination ref in a \`from_ref...to_ref\` diff expression. For \`pre-push\` hooks, this represents the branch being pushed. For \`post-checkout\` hooks, this represents the branch that is now checked out.]:to_ref:"
"--commit-msg-filename[Filename to check when running during \`commit-msg\`]:commit_msg_filename:"
"--prepare-commit-message-source[Source of the commit message (typically the second argument to .git\/hooks\/prepare-commit-msg)]:prepare_commit_message_source:"
"--commit-object-name[Commit object name (typically the third argument to .git\/hooks\/prepare-commit-msg)]:commit_object_name:"
"--remote-name[Remote name used by \`git push\`.]:remote_name:"
"--remote-url[Remote url used by \`git push\`.]:remote_url:"
"--checkout-type[Indicates whether the checkout was a branch checkout (changing branches, flag\=1) or a file checkout (retrieving a file from the index, flag\=0).]:checkout_type:"
"--is-squash-merge[During a post-merge hook, indicates whether the merge was a squash merge]:is_squash_merge:"
"--rewrite-command[During a post-rewrite hook, specifies the command that invoked the rewrite]:rewrite_command:"
":A single hook-id to run:"
)
_pre_commit_sample_config_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
)
_pre_commit_try_repo_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
{-c,--config}"[Path to alternate config file]:config:_files -g '*.yaml'"
{--ref,--rev}"[Manually select a rev to run against, otherwise the \`HEAD\` revision will be used.]:ref:"
{--verbose,-v}"[]"
{--all-files,-a}"[Run on all the files in the repo.]"
"--files[Specific filenames to run hooks on.]:files:_files"
"--show-diff-on-failure[When hooks fail, run \`git diff\` directly afterward.]"
"--hook-stage[The stage during which the hook is fired. One of \%(choices)s]:hook_stage:(commit merge-commit prepare-commit-msg commit-msg post-commit manual post-checkout push post-merge post-rewrite)"
"--remote-branch[Remote branch ref used by \`git push\`.]:remote_branch:"
"--local-branch[Local branch ref used by \`git push\`.]:local_branch:"
{--from-ref,--source,-s}"[(for usage with \`--to-ref\`) -- this option represents the original ref in a \`from_ref...to_ref\` diff expression. For \`pre-push\` hooks, this represents the branch you are pushing to. For \`post-checkout\` hooks, this represents the branch that was previously checked out.]:from_ref:"
{--to-ref,--origin,-o}"[(for usage with \`--from-ref\`) -- this option represents the destination ref in a \`from_ref...to_ref\` diff expression. For \`pre-push\` hooks, this represents the branch being pushed. For \`post-checkout\` hooks, this represents the branch that is now checked out.]:to_ref:"
"--commit-msg-filename[Filename to check when running during \`commit-msg\`]:commit_msg_filename:"
"--prepare-commit-message-source[Source of the commit message (typically the second argument to .git\/hooks\/prepare-commit-msg)]:prepare_commit_message_source:"
"--commit-object-name[Commit object name (typically the third argument to .git\/hooks\/prepare-commit-msg)]:commit_object_name:"
"--remote-name[Remote name used by \`git push\`.]:remote_name:"
"--remote-url[Remote url used by \`git push\`.]:remote_url:"
"--checkout-type[Indicates whether the checkout was a branch checkout (changing branches, flag\=1) or a file checkout (retrieving a file from the index, flag\=0).]:checkout_type:"
"--is-squash-merge[During a post-merge hook, indicates whether the merge was a squash merge]:is_squash_merge:"
"--rewrite-command[During a post-rewrite hook, specifies the command that invoked the rewrite]:rewrite_command:"
":Repository to source hooks from.:"
":A single hook-id to run:"
)
_pre_commit_uninstall_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
{-c,--config}"[Path to alternate config file]:config:_files -g '*.yaml'"
"*"{-t,--hook-type}"[]:hook_types:(pre-commit pre-merge-commit pre-push prepare-commit-msg commit-msg post-commit post-checkout post-merge post-rewrite)"
)
_pre_commit_validate_config_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
"(*)::filenames:"
)
_pre_commit_validate_manifest_options=(
"(- : *)"{-h,--help}"[show this help message and exit]"
"--color[Whether to use color in output. Defaults to \`\%(default)s\`.]:color:"
"(*)::filenames:"
)
_pre_commit() {
local context state line curcontext="$curcontext" one_or_more='(-)*' reminder='(*)'
if ((${_pre_commit_options[(I)${(q)one_or_more}*]} + ${_pre_commit_options[(I)${(q)reminder}*]} == 0)); then # noqa: E501
_pre_commit_options+=(': :_pre_commit_commands' '*::: :->pre-commit')
fi
_arguments -C $_pre_commit_options
case $state in
pre-commit)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:_pre_commit-$line[1]:"
case $line[1] in
autoupdate) _arguments -C $_pre_commit_autoupdate_options ;;
clean) _arguments -C $_pre_commit_clean_options ;;
gc) _arguments -C $_pre_commit_gc_options ;;
help) _arguments -C $_pre_commit_help_options ;;
init-templatedir) _arguments -C $_pre_commit_init_templatedir_options ;;
install) _arguments -C $_pre_commit_install_options ;;
install-hooks) _arguments -C $_pre_commit_install_hooks_options ;;
migrate-config) _arguments -C $_pre_commit_migrate_config_options ;;
run) _arguments -C $_pre_commit_run_options ;;
sample-config) _arguments -C $_pre_commit_sample_config_options ;;
try-repo) _arguments -C $_pre_commit_try_repo_options ;;
uninstall) _arguments -C $_pre_commit_uninstall_options ;;
validate-config) _arguments -C $_pre_commit_validate_config_options ;;
validate-manifest) _arguments -C $_pre_commit_validate_manifest_options ;;
esac
esac
}
typeset -A opt_args
_pre_commit "$@"