Skip to content

Commit 9c30d10

Browse files
committed
Fix trailing comma lint issue.
1 parent 3199a1a commit 9c30d10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/diff2html.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
matchWordsThreshold: 0.25,
2121
matchingMaxComparisons: 2500,
2222
maxLineLengthHighlight: 10000,
23-
renderNothingWhenEmpty: false,
23+
renderNothingWhenEmpty: false
2424
};
2525

2626
/*

test/line-by-line-tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,11 +283,11 @@ describe('LineByLinePrinter', function() {
283283
});
284284
it('should return empty when option renderNothingWhenEmpty is true and file blocks not present', function() {
285285
var lineByLinePrinter = new LineByLinePrinter({
286-
renderNothingWhenEmpty: true,
286+
renderNothingWhenEmpty: true
287287
});
288288

289289
var file = {
290-
blocks: [],
290+
blocks: []
291291
};
292292

293293
var diffs = '<span>Random Html</span>';

0 commit comments

Comments
 (0)