chore: lint require i18n-resources first in status-im2.core (#17905)
This commit is contained in:
parent
b9353b1ccd
commit
4a44161163
11
Makefile
11
Makefile
|
@ -311,13 +311,14 @@ endef
|
||||||
lint: export TARGET := clojure
|
lint: export TARGET := clojure
|
||||||
lint: export CLJ_LINTER_PRINT_WARNINGS ?= false
|
lint: export CLJ_LINTER_PRINT_WARNINGS ?= false
|
||||||
lint: ##@test Run code style checks
|
lint: ##@test Run code style checks
|
||||||
@sh scripts/lint-re-frame-in-quo-components.sh && \
|
@sh scripts/lint/re-frame-in-quo-components.sh && \
|
||||||
sh scripts/lint-direct-require-component-outside-quo.sh && \
|
sh scripts/lint/direct-require-component-outside-quo.sh && \
|
||||||
|
sh scripts/lint/require-i18n-resource-first.sh && \
|
||||||
clj-kondo --config .clj-kondo/config.edn --cache false --fail-level error --lint src $(if $(filter $(CLJ_LINTER_PRINT_WARNINGS),true),,| grep -v ': warning: ') && \
|
clj-kondo --config .clj-kondo/config.edn --cache false --fail-level error --lint src $(if $(filter $(CLJ_LINTER_PRINT_WARNINGS),true),,| grep -v ': warning: ') && \
|
||||||
ALL_CLOJURE_FILES=$(call find_all_clojure_files) && \
|
ALL_CLOJURE_FILES=$(call find_all_clojure_files) && \
|
||||||
scripts/lint_translations.clj && \
|
scripts/lint/translations.clj && \
|
||||||
zprint '{:search-config? true}' -sfc $$ALL_CLOJURE_FILES && \
|
zprint '{:search-config? true}' -sfc $$ALL_CLOJURE_FILES && \
|
||||||
sh scripts/lint-trailing-newline.sh && \
|
sh scripts/lint/trailing-newline.sh && \
|
||||||
node_modules/.bin/prettier --write .
|
node_modules/.bin/prettier --write .
|
||||||
|
|
||||||
# NOTE: We run the linter twice because of https://github.com/kkinnear/zprint/issues/271
|
# NOTE: We run the linter twice because of https://github.com/kkinnear/zprint/issues/271
|
||||||
|
@ -327,7 +328,7 @@ lint-fix: ##@test Run code style checks and fix issues
|
||||||
zprint '{:search-config? true}' -sw $$ALL_CLOJURE_FILES && \
|
zprint '{:search-config? true}' -sw $$ALL_CLOJURE_FILES && \
|
||||||
zprint '{:search-config? true}' -sw $$ALL_CLOJURE_FILES && \
|
zprint '{:search-config? true}' -sw $$ALL_CLOJURE_FILES && \
|
||||||
clojure-lsp --ns-exclude-regex ".*/src/status_im2/core\.cljs$$" clean-ns && \
|
clojure-lsp --ns-exclude-regex ".*/src/status_im2/core\.cljs$$" clean-ns && \
|
||||||
sh scripts/lint-trailing-newline.sh --fix && \
|
sh scripts/lint/trailing-newline.sh --fix && \
|
||||||
node_modules/.bin/prettier --write .
|
node_modules/.bin/prettier --write .
|
||||||
|
|
||||||
shadow-server: export TARGET := clojure
|
shadow-server: export TARGET := clojure
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
if rg --quiet --multiline '^\(ns.*\n^\s*\(:require\n(^\s*(;|#_).*\n)*(^\s*\[status-im2\.setup\.i18n-resources\W)' src/status_im2/core.cljs; then
|
||||||
|
exit 0
|
||||||
|
elif [ $? -eq 1 ]; then
|
||||||
|
echo "status-im2.setup.i18n-resources must be loaded first (be the first one in ns :require form) in status-im2.core"
|
||||||
|
echo "For more info, check the comment here https://github.com/status-im/status-mobile/pull/17618#discussion_r1361275489"
|
||||||
|
else
|
||||||
|
exit $?
|
||||||
|
fi
|
Loading…
Reference in New Issue