File tree 4 files changed +5
-9
lines changed
4 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 26
26
"no-undef": "error",
27
27
"no-useless-escape": "error",
28
28
"operator-linebreak": ["error", "before"],
29
+ "semi-style": ["error", "last"],
29
30
"space-infix-ops": "error",
30
31
"space-unary-ops": ["error", {
31
32
"words": false,
Original file line number Diff line number Diff line change @@ -7,11 +7,9 @@ var createResult = require('./lib/results');
7
7
var through = require ( 'through' ) ;
8
8
9
9
var canEmitExit = typeof process !== 'undefined' && process
10
- && typeof process . on === 'function' && process . browser !== true
11
- ;
10
+ && typeof process . on === 'function' && process . browser !== true ;
12
11
var canExit = typeof process !== 'undefined' && process
13
- && typeof process . exit === 'function'
14
- ;
12
+ && typeof process . exit === 'function' ;
15
13
16
14
module . exports = ( function ( ) {
17
15
var wait = false ;
Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ module.exports = function () {
12
12
for ( var i = 0 ; i < buf . length ; i ++ ) {
13
13
var c = typeof buf === 'string'
14
14
? buf . charAt ( i )
15
- : String . fromCharCode ( buf [ i ] )
16
- ;
15
+ : String . fromCharCode ( buf [ i ] ) ;
17
16
if ( c === '\n' ) flush ( ) ;
18
17
else line += c ;
19
18
}
Original file line number Diff line number Diff line change @@ -16,9 +16,7 @@ var $push = callBound('Array.prototype.push');
16
16
var yamlIndicators = / : | - | \? / ;
17
17
var nextTick = typeof setImmediate !== 'undefined'
18
18
? setImmediate
19
- : process . nextTick
20
- ;
21
-
19
+ : process . nextTick ;
22
20
module . exports = Results ;
23
21
inherits ( Results , EventEmitter ) ;
24
22
You can’t perform that action at this time.
0 commit comments