Skip to content

Commit fbd0a0b

Browse files
committed
enforce no multiple empty lines at EOF (just eol-last is enough)
1 parent aae3e47 commit fbd0a0b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"rules": {
1010
"no-trailing-spaces": [2],
11-
"no-multiple-empty-lines": [2, {"max": 2, "maxEOF": 1}],
11+
"no-multiple-empty-lines": [2, {"max": 2, "maxEOF": 0}],
1212
"eol-last": [2],
1313
"linebreak-style": [2, "unix"],
1414
"indent": [2, 4, {"SwitchCase": 1}],

src/plots/ternary/ternary.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,4 +695,3 @@ function removeZoombox(gd) {
695695
.selectAll('.zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners')
696696
.remove();
697697
}
698-

0 commit comments

Comments
 (0)