cargo-setupx 0.1.0

Rust-based CLI and library that automates the initial setup of new Rust projects with modular configuration packs
Documentation
//! Git hooks README template

/// Git hooks README template
pub const GITHOOKS_README: &str = r#"# Git Hooks

This directory contains git hooks for maintaining code quality.

## Setup

Run the setup script after cloning:

```bash
make setup-hooks
# or
./.githooks/setup.sh
```

## Hooks

### pre-push

Runs before every `git push` to ensure:
- ✅ Code is formatted (`cargo fmt`)
- ✅ No clippy warnings
- ✅ No spelling errors
- ✅ Code compiles
- ✅ All tests pass

### Bypassing Hooks (Not Recommended)

Only in emergencies:
```bash
git push --no-verify
```
"#;