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

# skip in CI
[ -n "$CI" ] && exit 0

cd frontend 
# lint staged files
yarn lint-staged

