#!/bin/bash
set -e

echo
echo "⏳  linting scripts"
echo

eslint "src/**/*.js" || exit 0

echo "✅  scripts passed"
echo
