Skip to content

Commit cecb45a

Browse files
author
Michael Veeck
committed
Cleanup eslint warnings
1 parent 54c8989 commit cecb45a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"extends": "gulp",
33
"env": {
44
"mocha": true
5+
},
6+
"rules" : {
7+
"max-len": ["error", { "code": 110 }]
58
}
69
}

test/option.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ it('should pass-through third argument to deepmerge and do an overwriteMerge', f
126126
var stream = gulp.src('test/test.json').pipe(json({
127127
authors: ['tomcat'],
128128
},{},{
129-
arrayMerge: function(dist,source,options) {
129+
arrayMerge: function(dist,source) {
130130
return source;
131131
},
132132
}));

0 commit comments

Comments
 (0)