diff --git a/pre_commit/commands/run.py b/pre_commit/commands/run.py index c2dab6f7..8f3fdd53 100644 --- a/pre_commit/commands/run.py +++ b/pre_commit/commands/run.py @@ -347,6 +347,9 @@ def run( if args.checkout_type: environ['PRE_COMMIT_CHECKOUT_TYPE'] = args.checkout_type + if args.verbose: + environ['PRE_COMMIT_VERBOSE'] = '1' + with contextlib.ExitStack() as exit_stack: if stash: exit_stack.enter_context(staged_files_only(store.directory))