Files
profile/themes/keepit/node_modules/husky/README.md
Spencer Pincott 97737ca1ae Initial commit
2024-07-15 22:20:13 -04:00

39 lines
505 B
Markdown

# husky
> Modern native Git hooks made easy
Husky improves your commits and more 🐶 *woof!*
# Install
```
npm install husky --save-dev
```
# Usage
Edit `package.json > prepare` script and run it once:
```sh
npm set-script prepare "husky install"
npm run prepare
```
Add a hook:
```sh
npx husky add .husky/pre-commit "npm test"
git add .husky/pre-commit
```
Make a commit:
```sh
git commit -m "Keep calm and commit"
# `npm test` will run
```
# Documentation
https://typicode.github.io/husky