summaryrefslogtreecommitdiff
path: root/meta-phosphor/scripts/run-repotest
diff options
context:
space:
mode:
Diffstat (limited to 'meta-phosphor/scripts/run-repotest')
-rwxr-xr-xmeta-phosphor/scripts/run-repotest11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta-phosphor/scripts/run-repotest b/meta-phosphor/scripts/run-repotest
index 8c47e536cf..c841b65289 100755
--- a/meta-phosphor/scripts/run-repotest
+++ b/meta-phosphor/scripts/run-repotest
@@ -188,7 +188,9 @@ meta-quanta/meta-q71l/recipes-phosphor/quanta-powerctrl/files/poweron.sh
meta-yadro/meta-nicole/recipes-phosphor/chassis/avsbus-control/avsbus-control.sh
"
-types=(shell)
+types=(json shell)
+# shellcheck disable=SC2034
+check_json="eslint --resolve-plugins-relative-to /usr/local/lib/node_modules"
# shellcheck disable=SC2034
check_shell="shellcheck -x"
@@ -215,12 +217,19 @@ for f in $non_bbfiles; do
file_type="shell"
;;
+ *JSON\ data*)
+ file_type="json"
+ ;;
+
*)
case $f in
*.sh)
file_type="shell"
;;
+ *.json)
+ file_type="json"
+ ;;
esac
esac