Skip to content

Commit 5f8afc9

Browse files
committed
[eslint] enable semi-style
1 parent 428636c commit 5f8afc9

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"no-undef": "error",
2727
"no-useless-escape": "error",
2828
"operator-linebreak": ["error", "before"],
29+
"semi-style": ["error", "last"],
2930
"space-infix-ops": "error",
3031
"space-unary-ops": ["error", {
3132
"words": false,

index.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ var createResult = require('./lib/results');
77
var through = require('through');
88

99
var canEmitExit = typeof process !== 'undefined' && process
10-
&& typeof process.on === 'function' && process.browser !== true
11-
;
10+
&& typeof process.on === 'function' && process.browser !== true;
1211
var canExit = typeof process !== 'undefined' && process
13-
&& typeof process.exit === 'function'
14-
;
12+
&& typeof process.exit === 'function';
1513

1614
module.exports = (function () {
1715
var wait = false;

lib/default_stream.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ module.exports = function () {
1212
for (var i = 0; i < buf.length; i++) {
1313
var c = typeof buf === 'string'
1414
? buf.charAt(i)
15-
: String.fromCharCode(buf[i])
16-
;
15+
: String.fromCharCode(buf[i]);
1716
if (c === '\n') flush();
1817
else line += c;
1918
}

lib/results.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ var $push = callBound('Array.prototype.push');
1616
var yamlIndicators = /:|-|\?/;
1717
var nextTick = typeof setImmediate !== 'undefined'
1818
? setImmediate
19-
: process.nextTick
20-
;
21-
19+
: process.nextTick;
2220
module.exports = Results;
2321
inherits(Results, EventEmitter);
2422

0 commit comments

Comments
 (0)