chore: format and lint

This commit is contained in:
Thijs Louisse 2022-05-09 14:51:11 +02:00
parent d1d977c1ad
commit 427da7dd7a
2 changed files with 32 additions and 1 deletions

30
.husky/_/husky.sh Normal file
View file

@ -0,0 +1,30 @@
#!/bin/sh
if [ -z "$husky_skip_init" ]; then
debug () {
[ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1"
}
readonly hook_name="$(basename "$0")"
debug "starting $hook_name..."
if [ "$HUSKY" = "0" ]; then
debug "HUSKY env variable is set to 0, skipping hook"
exit 0
fi
if [ -f ~/.huskyrc ]; then
debug "sourcing ~/.huskyrc"
. ~/.huskyrc
fi
export readonly husky_skip_init=1
sh -e "$0" "$@"
exitCode="$?"
if [ $exitCode != 0 ]; then
echo "husky - $hook_name hook exited with code $exitCode (error)"
exit $exitCode
fi
exit 0
fi

View file

@ -12,7 +12,8 @@
"alwaysStrict": true,
"types": ["node", "mocha", "sinon"],
"esModuleInterop": true,
"suppressImplicitAnyIndexErrors": true
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true
},
"include": ["packages/**/*.js", "packages-node/**/*.js"],
"exclude": [