16 lines
287 B
Bash
16 lines
287 B
Bash
#!/bin/sh
|
|
|
|
echo "Running static analysis using ktlint..."
|
|
|
|
# ktlintcheck
|
|
#./gradlew ktlintcheck --daemon
|
|
|
|
status=$?
|
|
|
|
if [ "$status" = 0 ] ; then
|
|
echo "Static analysis found no problems."
|
|
exit 0
|
|
else
|
|
echo 1>&2 "Static analysis found violations it could not fix."
|
|
exit 1
|
|
fi |