Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Fixed missing comma tslint violation
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Goldberg committed Oct 16, 2016
1 parent b80ff92 commit e509f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/noFloatingPromisesRule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class Rule extends Lint.Rules.TypedRule {
class NoFloatingPromisesWalker extends Lint.ProgramAwareRuleWalker {
private static allowedParentKinds = {
[ts.SyntaxKind.CallExpression]: true,
[ts.SyntaxKind.VariableDeclaration]: true
[ts.SyntaxKind.VariableDeclaration]: true,
};

public visitCallExpression(node: ts.CallExpression): void {
Expand Down

0 comments on commit e509f3f

Please sign in to comment.