-
Cam Saul authored
* Add `clojure -M:kondo` and `clojure -M:kondo:kondo/all` and bump version * Fix Kondo errors * Fix Kondo+LSP issues with `defendpoint`, `defenterprise`, etc. * Use replace-deps instead of deps for speed * Ok apparently maybe we do need to copy configs when we run Kondo on CI * Oops `./bin/kondo.sh` should not try to use `clj-kondo` * Remove references to GA driver folders
Cam Saul authored* Add `clojure -M:kondo` and `clojure -M:kondo:kondo/all` and bump version * Fix Kondo errors * Fix Kondo+LSP issues with `defendpoint`, `defenterprise`, etc. * Use replace-deps instead of deps for speed * Ok apparently maybe we do need to copy configs when we run Kondo on CI * Oops `./bin/kondo.sh` should not try to use `clj-kondo` * Remove references to GA driver folders
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
kondo-updated.sh 1008 B
#! /usr/bin/env bash
# Run Kondo against files that have changed since the last commit. See also `cljfmt-updated.sh`
#
# By default, lints uncommitted changes i.e. files that are different compared to HEAD. You can choose a different
# target to diff against e.g. `master` as follows:
#
# ./bin/kondo-updated.sh master
set -euo pipefail
# make sure we're in the root dir of the metabase repo i.e. the parent dir of the dir this script lives in
script_dir=`dirname "${BASH_SOURCE[0]}"`
cd "$script_dir/.."
if [ -n "${1:-}" ]; then
diff_target="$1"
else
diff_target="HEAD"
fi
echo "Linting Clojure source files that have changes compared to $diff_target..."
# ignore files in the Kondo config directory and dev directory
UPDATED_FILES=$(git diff --name-only "$diff_target" -- '*.clj' '*.cljc' '*.cljs' ':!/.clj-kondo' ':!/dev')
if [ -z "$UPDATED_FILES" ]; then
echo 'No updated Clojure source files.'
exit 0
fi
command="clojure -M:kondo --lint ${UPDATED_FILES[*]}"
set -x
$command