mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
15 lines
227 B
Bash
Executable file
15 lines
227 B
Bash
Executable file
#!/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
|