aboutsummaryrefslogtreecommitdiffstats
path: root/.husky
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-16 12:57:50 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-16 12:58:45 +0530
commit47b30902244e9d9de969050aed6526f14f73694d (patch)
treee9b7ea9a158189338619a13e7fea601a26c1347e /.husky
parentFixing incorrect example in TweetDeck. (diff)
downloadferdium-recipes-47b30902244e9d9de969050aed6526f14f73694d.tar.gz
ferdium-recipes-47b30902244e9d9de969050aed6526f14f73694d.tar.zst
ferdium-recipes-47b30902244e9d9de969050aed6526f14f73694d.zip
Adding husky pre-commit hook
Diffstat (limited to '.husky')
-rw-r--r--.husky/_/husky.sh30
-rwxr-xr-x.husky/pre-commit4
2 files changed, 34 insertions, 0 deletions
diff --git a/.husky/_/husky.sh b/.husky/_/husky.sh
new file mode 100644
index 0000000..ca2720e
--- /dev/null
+++ b/.husky/_/husky.sh
@@ -0,0 +1,30 @@
1#!/bin/sh
2if [ -z "$husky_skip_init" ]; then
3 debug () {
4 [ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1"
5 }
6
7 readonly hook_name="$(basename "$0")"
8 debug "starting $hook_name..."
9
10 if [ "$HUSKY" = "0" ]; then
11 debug "HUSKY env variable is set to 0, skipping hook"
12 exit 0
13 fi
14
15 if [ -f ~/.huskyrc ]; then
16 debug "sourcing ~/.huskyrc"
17 . ~/.huskyrc
18 fi
19
20 export readonly husky_skip_init=1
21 sh -e "$0" "$@"
22 exitCode="$?"
23
24 if [ $exitCode != 0 ]; then
25 echo "husky - $hook_name hook exited with code $exitCode (error)"
26 exit $exitCode
27 fi
28
29 exit 0
30fi
diff --git a/.husky/pre-commit b/.husky/pre-commit
new file mode 100755
index 0000000..1ecae40
--- /dev/null
+++ b/.husky/pre-commit
@@ -0,0 +1,4 @@
1#!/bin/sh
2. "$(dirname "$0")/_/husky.sh"
3
4npm run lint && npm run reformat-files && npm run package