File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ endef
311
311
lint : export TARGET := clojure
312
312
lint : # #@test Run code style checks
313
313
@sh scripts/lint-re-frame-in-quo-components.sh && \
314
- sh scripts/lint-old-quo-usage.sh && \
314
+ sh scripts/lint-old-quo-usage.sh \
315
315
clj-kondo --config .clj-kondo/config.edn --cache false --fail-level error --lint src && \
316
316
ALL_CLOJURE_FILES=$(call find_all_clojure_files) && \
317
317
zprint ' {:search-config? true}' -sfc $$ ALL_CLOJURE_FILES && \
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env sh
2
2
3
- QUO_USAGES=$( grep -r -E ' \[quo\.[^ ]* :as' --include ' *.cljs' --include ' *.clj' ' ./src/status_im2' )
3
+ set -euo pipefail
4
+
5
+ QUO_USAGES=$( grep -r -E ' \[quo\.[^ ]* :as' --include ' *.cljs' --include ' *.clj' ' ./src/status_im2' || true)
4
6
5
7
echo -e " \nChecking 'status_im2' namespace for 'quo' namespace usage."
6
8
You can’t perform that action at this time.
0 commit comments