mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-04 13:50:13 -05:00
5 lines
82 B
Bash
5 lines
82 B
Bash
#!/bin/bash
|
|
|
|
if [ "$HUSKY_HOOK" = "pre-push" ]; then
|
|
npm run lint:affected
|
|
fi
|