mirror of
https://github.com/penpot/penpot.git
synced 2026-04-25 11:18:36 +00:00
6 lines
83 B
Bash
6 lines
83 B
Bash
#!/bin/bash
|
|
|
|
if [ "$HUSKY_HOOK" = "pre-push" ]; then
|
|
pnpm run lint:affected
|
|
fi
|