1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00

correct eslint default pattern

This commit is contained in:
Christopher Fenner 2018-01-29 16:47:40 +01:00
parent 5f6ba2f4b6
commit a0bc00870d

View File

@ -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)