mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
16 lines
227 B
Bash
16 lines
227 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
EXIT=0
|
||
|
|
|
||
|
|
clj-kondo --lint modules/*/src test perf-test
|
||
|
|
EXIT=$(( EXIT + $? ))
|
||
|
|
|
||
|
|
for file in examples/*/src; do
|
||
|
|
echo
|
||
|
|
echo "Linting $file"
|
||
|
|
clj-kondo --lint "$file"
|
||
|
|
EXIT=$(( EXIT + $? ))
|
||
|
|
done
|
||
|
|
|
||
|
|
exit $EXIT
|