mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-08 07:50:44 -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
|