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