dotfiles/scripts/runtests.sh

14 lines
182 B
Bash
Raw Normal View History

2016-02-08 23:16:28 +00:00
#!/usr/bin/env bash
set -e
echo ">> Validating JSON..."
npm install jsonlint -g
jsonlint -q *.json
echo ">> Validating Python..."
pip install flake8
flake8 * --ignore=E128,E501