From 27cbf30b87e76e826f27c96f2ff86040eaa67da0 Mon Sep 17 00:00:00 2001
From: kraaij <kraaij@astron.nl>
Date: Thu, 19 Oct 2023 20:42:33 +0200
Subject: [PATCH] tweaking the eslint

---
 .gitlab-ci.yml | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ff52b69845f..ec227a4b92b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -952,14 +952,10 @@ eslint_TMSSFrontEnd:
   allow_failure: true
   script:
     - echo "Eslinting TMSS FrontEnd..."
-    - ls -al
-    - echo "and root.."
-    - ls -al /
     - cd /builds/ro/lofar/SAS/TMSS/frontend/tmss_webapp
     - ls -al
-    - npx eslint -f json . --output-file=/eslint.json
-    - echo "eslinted"
-    - ls -al  /
+    - npx eslint -f json . --output-file=/tmp/eslint.json
+    - ls -al  /tmp/eslint.json
     - echo "done"
     
   needs:
@@ -969,7 +965,7 @@ eslint_TMSSFrontEnd:
     when: always
     expire_in: never
     reports:
-      codequality: /eslint.json
+      codequality: /tmp/eslint.json
         
 
 
-- 
GitLab