mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 14:01:36 +01:00
9931b78c5f
- Added instruction to lint `setup.py` to `ci/lint.sh` - Updated `setup.py` per linter suggestions
11 lines
199 B
Bash
Executable File
11 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Resolve the app root
|
|
SCRIPT=`realpath $0`
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
APPROOT=`realpath "$SCRIPTPATH/.."`
|
|
|
|
flake8 $APPROOT/setup.py
|
|
flake8 $APPROOT/bin/cheat
|
|
flake8 $APPROOT/cheat/*.py
|