Skip to content

Commit 1af8f52

Browse files
committed
[eslint] enable no-extra-semi
1 parent 5f8afc9 commit 1af8f52

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"anonymous": "always",
2424
"named": "never",
2525
}],
26+
"no-extra-semi": "error",
2627
"no-undef": "error",
2728
"no-useless-escape": "error",
2829
"operator-linebreak": ["error", "before"],

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function createExitHarness(conf, wait) {
110110
es.on('error', function (err) { harness._exitCode = 1; });
111111
}
112112
stream.on('end', function () { ended = true; });
113-
};
113+
}
114114
}
115115

116116
module.exports.createHarness = createHarness;

lib/results.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ function encodeResult(res, count) {
158158
output += ' # SKIP' + ((typeof res.skip === 'string') ? ' ' + coalesceWhiteSpaces(res.skip) : '');
159159
} else if (res.todo) {
160160
output += ' # TODO' + ((typeof res.todo === 'string') ? ' ' + coalesceWhiteSpaces(res.todo) : '');
161-
};
161+
}
162162

163163
output += '\n';
164164
if (res.ok) return output;

test/double_end.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test(function (tt) {
2020
// This code is unfortunately by necessity highly coupled to node
2121
// versions, and may require tweaking with future versions of the timers
2222
// library.
23-
function doEnd() { throw new Error(); };
23+
function doEnd() { throw new Error(); }
2424
var to = setTimeout(doEnd, 5000);
2525
clearTimeout(to);
2626
to._onTimeout = doEnd;

0 commit comments

Comments
 (0)