Fix trailing comma lint issue.
This commit is contained in:
parent
3199a1ac7b
commit
9c30d10b97
2 changed files with 3 additions and 3 deletions
|
|
@ -20,7 +20,7 @@
|
|||
matchWordsThreshold: 0.25,
|
||||
matchingMaxComparisons: 2500,
|
||||
maxLineLengthHighlight: 10000,
|
||||
renderNothingWhenEmpty: false,
|
||||
renderNothingWhenEmpty: false
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -283,11 +283,11 @@ describe('LineByLinePrinter', function() {
|
|||
});
|
||||
it('should return empty when option renderNothingWhenEmpty is true and file blocks not present', function() {
|
||||
var lineByLinePrinter = new LineByLinePrinter({
|
||||
renderNothingWhenEmpty: true,
|
||||
renderNothingWhenEmpty: true
|
||||
});
|
||||
|
||||
var file = {
|
||||
blocks: [],
|
||||
blocks: []
|
||||
};
|
||||
|
||||
var diffs = '<span>Random Html</span>';
|
||||
|
|
|
|||
Loading…
Reference in a new issue