#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

# eslint fix if lint fail then abort commit
npm run lint || (npm run lint-fix && exit 1)
