mirror of
https://github.com/tubearchivist/tubearchivist-metrics.git
synced 2024-12-22 09:50:15 +00:00
32 lines
688 B
Bash
Executable File
32 lines
688 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function validate {
|
|
|
|
if [[ $1 ]]; then
|
|
check_path="$1"
|
|
else
|
|
check_path="."
|
|
fi
|
|
|
|
echo "run validate on $check_path"
|
|
|
|
echo "running black"
|
|
black --diff --color --check -l 79 "$check_path"
|
|
echo "running codespell"
|
|
codespell --skip="./.git" "$check_path"
|
|
echo "running flake8"
|
|
flake8 "$check_path" --count --max-complexity=10 --max-line-length=79 \
|
|
--show-source --statistics
|
|
echo "running isort"
|
|
isort --check-only --diff --profile black -l 79 "$check_path"
|
|
printf " \n> all validations passed\n"
|
|
|
|
}
|
|
|
|
if [[ $1 == "validate" ]]; then
|
|
validate
|
|
else
|
|
echo "valid options are: validate"
|
|
fi
|
|
|
|
exit 0 |