From cb5230f5691a8d0373f70fc0cba580ed8b8f1190 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Fri, 29 Dec 2017 08:46:01 -0500 Subject: [PATCH] comply with linter --- lib/core/plugins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/plugins.js b/lib/core/plugins.js index 83a5bd347..6258de50a 100644 --- a/lib/core/plugins.js +++ b/lib/core/plugins.js @@ -62,7 +62,7 @@ Plugins.prototype.getPluginsProperty = function(pluginType, property) { //return flattened list if (matchingProperties.length === 0) return []; - return matchingProperties.reduce((a,b) => { return a.concat(b); }) + return matchingProperties.reduce((a,b) => { return a.concat(b); }); }; module.exports = Plugins;