21 lines
354 B
Bash
21 lines
354 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Runs linting scripts over the local checkout
|
||
|
# isort - sorts import statements
|
||
|
# flake8 - lints and finds mistakes
|
||
|
# black - opinionated code formatter
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ $# -ge 1 ]
|
||
|
then
|
||
|
files=$*
|
||
|
else
|
||
|
files="my_project_name my-project-name"
|
||
|
fi
|
||
|
|
||
|
echo "Linting these locations: $files"
|
||
|
isort $files
|
||
|
flake8 $files
|
||
|
python3 -m black $files
|