#/usr/bin/env bash

#   _______________
#  |.-------------.|
#  ||~$[byte-sized||
#  ||   .tv]>     ||
# _|-_____________-|_
# \_________________/
#
# This project is a part of the “Byte-Sized JavaScript” videocasts.
#
# You can watch “Byte-Sized JavaScript” at: https://bytesized.tv/
#
# MIT Licensed — See LICENSE.md
#
# Send your comments, suggestions, and feedback to me@volkan.io
#

eslint .

if [ $? -eq 1 ]
then
   echo "Error linting files."
   exit 1
fi

echo "Everything is awesome!"
