From a0bc00870dd0f62e5c331187f9ff09a9d84c7a42 Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Mon, 29 Jan 2018 16:47:40 +0100 Subject: [PATCH] correct eslint default pattern --- vars/checkResultPublish.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/checkResultPublish.groovy b/vars/checkResultPublish.groovy index 7858191c1..b8df15c0c 100644 --- a/vars/checkResultPublish.groovy +++ b/vars/checkResultPublish.groovy @@ -33,7 +33,7 @@ def call(Map parameters = [:], body) { // report Checkstyle report('CheckStylePublisher', checkstyle, '**/target/checkstyle-result.xml', doArchive, testMode) // report ESLint - reportWarnings('JSLint', eslint, '**/target/eslint.checkstyle.xml', doArchive, testMode) + reportWarnings('JSLint', eslint, '**/target/eslint.xml', doArchive, testMode) // report PyLint reportWarnings('PyLint', pylint, '**/pylint.log', doArchive, testMode)