Tool Parameter Abuse
High
- Category
- Tool Misuse
- Content
**Automate repetitive dev tasks:** - Pre-commit hooks (Husky, pre-commit, lefthook): lint, format, type-check, run fast unit tests. Do not run slow integration tests in pre-commit. - Pre-push hooks: run full test suite. Can be skipped with `--no-verify` in emergencies. - Commit message linting (commitlint, conventional commits): enforce `type(scope): description` format. Enables automated changelog generation and semantic versioning. - Generate boilerplate: `make new-service name=payments` creates the directory structure,
- Confidence
- 84% confidence
- Finding
- --no-verify
