2019-02-01 20:42:10 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Resolve the app root
|
|
|
|
SCRIPT=`realpath $0`
|
|
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
|
|
APPROOT=`realpath "$SCRIPTPATH/.."`
|
|
|
|
|
2019-02-01 21:24:04 +01:00
|
|
|
flake8 $APPROOT/setup.py
|
2019-02-01 20:42:10 +01:00
|
|
|
flake8 $APPROOT/bin/cheat
|
|
|
|
flake8 $APPROOT/cheat/*.py
|