Fix trailing comma lint issue.

This commit is contained in:
Nick Brewer 2019-01-31 18:18:24 -06:00
parent 3199a1ac7b
commit 9c30d10b97
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@
matchWordsThreshold: 0.25,
matchingMaxComparisons: 2500,
maxLineLengthHighlight: 10000,
renderNothingWhenEmpty: false,
renderNothingWhenEmpty: false
};
/*

View file

@ -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>';