mirror of
https://github.com/facebookresearch/dinov2.git
synced 2025-06-03 14:52:49 +08:00
29 lines
303 B
Bash
Executable File
29 lines
303 B
Bash
Executable File
#!/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
|