chore: Change default git commit verify flag to False

This commit is contained in:
Paul Gauthier (aider) 2025-03-20 15:08:44 -07:00
parent 593de47438
commit fe795cc2d5
2 changed files with 3 additions and 3 deletions

View file

@ -439,8 +439,8 @@ def get_parser(default_config_files, git_root):
group.add_argument(
"--git-commit-verify",
action=argparse.BooleanOptionalAction,
default=True,
help="Enable/disable git pre-commit hooks with --no-verify (default: True)",
default=False,
help="Enable/disable git pre-commit hooks with --no-verify (default: False)",
)
group.add_argument(
"--commit",