LiheYoung's picture
Upload 101 files
843bd97 verified
raw
history blame
No virus
303 Bytes
#!/bin/sh
if [ -n "$1" ]; then
echo "linting \"$1\""
fi
echo "running black"
if [ -n "$1" ]; then
black "$1"
else
black dinov2
fi
echo "running flake8"
if [ -n "$1" ]; then
flake8 "$1"
else
flake8
fi
echo "running pylint"
if [ -n "$1" ]; then
pylint "$1"
else
pylint dinov2
fi
exit 0