mirror of
https://github.com/penpot/penpot.git
synced 2026-02-13 07:02:58 +00:00
6 lines
109 B
Bash
6 lines
109 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$HUSKY_HOOK" ] || [ "$HUSKY_HOOK" = "pre-commit" ]; then
|
|
pnpm run lint:affected
|
|
fi
|