From 4b322f82770efacbad9e4b1fbd406975c3f7c1ad Mon Sep 17 00:00:00 2001 From: ArnaudBuchholz Date: Fri, 15 Feb 2019 12:41:34 -0500 Subject: [PATCH] Ignore warnings (such as ignored files) (#296) --- grunt/eslint.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grunt/eslint.js b/grunt/eslint.js index 127e8176..2fff5e93 100644 --- a/grunt/eslint.js +++ b/grunt/eslint.js @@ -3,7 +3,8 @@ module.exports = { options: { rulePaths: [".eslintrules"], - fix: true + fix: true, + quiet: true // do not show warnings }, target: configuration.files.linting.js };