mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 22:11:35 +01:00
ba47dc2cbc
- Added `ci/lint.sh`, which uses `flake8` to lint the relevant files - Made changes to appease the linter. - Bugfix in `cheat/configuration` (missing dependency)
10 lines
174 B
Bash
Executable File
10 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Resolve the app root
|
|
SCRIPT=`realpath $0`
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
APPROOT=`realpath "$SCRIPTPATH/.."`
|
|
|
|
flake8 $APPROOT/bin/cheat
|
|
flake8 $APPROOT/cheat/*.py
|