Skip to content

Commit b1c2b15

Browse files
committed
enforce eol-last rule (all file must end with \n)
1 parent 581b6d6 commit b1c2b15

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"rules": {
1010
"no-trailing-spaces": [2],
1111
"no-multiple-empty-lines": [2, {"max": 2, "maxEOF": 1}],
12+
"eol-last": [2],
1213
"linebreak-style": [2, "unix"],
1314
"indent": [2, 4, {"SwitchCase": 1}],
1415
"max-len": [0, 80],

test/jasmine/tests/hover_label_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,4 +430,4 @@ describe('hover info on stacked subplots', function() {
430430
expect(textNodes[2][1].innerHTML).toEqual('3');
431431
});
432432
});
433-
});
433+
});

0 commit comments

Comments
 (0)