🔧 Add Pre-commit Integration to /git Command (#46)

feat: add pre-commit integration to /git command

- Add --pre-commit flag with setup and management capabilities
- Create pre-commit-patterns.yml with Python (uv) and Node (npm) support
- Include hooks for linting, formatting, and security scanning
- Add usage examples to command documentation

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
luciano
2025-07-02 11:36:54 -04:00
committed by GitHub
parent 94ab5700dc
commit d3b2c2a029
4 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# Pre-commit Patterns
# Simple pre-commit hook configuration and management
```yaml
Pre_Commit_Setup:
Install_Python: "uv add --dev pre-commit && uv run pre-commit install"
Install_Node: "npm install --save-dev pre-commit && npx pre-commit install"
Config: ".pre-commit-config.yaml"
Basic_Hooks:
- "trailing-whitespace"
- "end-of-file-fixer"
- "check-yaml"
- "check-json"
- "check-merge-conflict"
Language_Hooks:
Python: ["black", "ruff", "isort"]
JavaScript: ["eslint", "prettier"]
TypeScript: ["eslint", "prettier"]
Node: ["eslint", "prettier", "npm-audit"]
Security_Hooks:
- "detect-secrets"
- "bandit"
Commands:
Run_All: "pre-commit run --all-files"
Test_Hooks: "pre-commit run --hook-stage manual"
Skip_Hooks: "git commit --no-verify"
Update: "pre-commit autoupdate"
```