From tslint single line rule documentation
Rule: Single Line
The specified markers are required to be on the same line as the expression preceding them.
tslint enabled one-line , check-else. tslint else, , . else , if, tslint.
if (user.isAdmin) {
this.uiRouter.stateService.go('app.admin');
} else {
this.sharedVariables.user = user;
this.navigateByUserType(user);
}