diff --git a/.eslintrc b/.eslintrc index 6b84338..4d03599 100644 --- a/.eslintrc +++ b/.eslintrc @@ -2,5 +2,8 @@ "extends": "gulp", "env": { "mocha": true + }, + "rules" : { + "max-len": ["error", { "code": 110 }] } } diff --git a/test/option.js b/test/option.js index 3b55c7b..efeaf07 100644 --- a/test/option.js +++ b/test/option.js @@ -126,7 +126,7 @@ it('should pass-through third argument to deepmerge and do an overwriteMerge', f var stream = gulp.src('test/test.json').pipe(json({ authors: ['tomcat'], },{},{ - arrayMerge: function(dist,source,options) { + arrayMerge: function(dist,source) { return source; }, }));