chore(lint): require semicolons
Relying on ASI (automatic semicolon insertion) is allowed in TypeScript because JavaScript allows it. However, when we run clang-format it doesn’t understand that these statements are terminated with a newline and changes the indentation, in bad cases even breaking the code. Fixes #817
This commit is contained in:
@ -62,7 +62,7 @@ export class NgZone {
|
||||
if (global.zone) {
|
||||
this._disabled = false;
|
||||
this._mountZone = global.zone;
|
||||
this._innerZone = this._createInnerZone(this._mountZone, enableLongStackTrace)
|
||||
this._innerZone = this._createInnerZone(this._mountZone, enableLongStackTrace);
|
||||
} else {
|
||||
this._disabled = true;
|
||||
this._mountZone = null;
|
||||
@ -159,9 +159,9 @@ export class NgZone {
|
||||
|
||||
if (enableLongStackTrace) {
|
||||
errorHandling = StringMapWrapper.merge(Zone.longStackTraceZone,
|
||||
{onError: function(e) { ngZone._onError(this, e) }});
|
||||
{onError: function(e) { ngZone._onError(this, e); }});
|
||||
} else {
|
||||
errorHandling = {onError: function(e) { ngZone._onError(this, e) }};
|
||||
errorHandling = {onError: function(e) { ngZone._onError(this, e); }};
|
||||
}
|
||||
|
||||
return zone.fork(errorHandling)
|
||||
@ -200,7 +200,7 @@ export class NgZone {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
},
|
||||
'$scheduleMicrotask': function(parentScheduleMicrotask) {
|
||||
return function(fn) {
|
||||
@ -213,7 +213,7 @@ export class NgZone {
|
||||
}
|
||||
};
|
||||
parentScheduleMicrotask.call(this, microtask);
|
||||
}
|
||||
};
|
||||
},
|
||||
_innerZone: true
|
||||
});
|
||||
|
Reference in New Issue
Block a user