Skip to content

Commit

Permalink
Cleanup eslint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Veeck committed Oct 23, 2019
1 parent 54c8989 commit cecb45a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"extends": "gulp",
"env": {
"mocha": true
},
"rules" : {
"max-len": ["error", { "code": 110 }]
}
}
2 changes: 1 addition & 1 deletion test/option.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
}));
Expand Down

0 comments on commit cecb45a

Please sign in to comment.