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