#!/bin/bash
cd frontend
if ! npm run lint
then
echo "Frontend lint failed"
exit 1
failed
cd backend
if ! composer run-script lint
echo "Backend lint failed"
exit 2
fi
exit 0