Skip to content

Commit

Permalink
Merge pull request Azure#90 from Azure/kamip/no-return-await
Browse files Browse the repository at this point in the history
Add no-return-await TSLint rule
  • Loading branch information
Dan Schulte authored Dec 6, 2018
2 parents 6b0cdbb + 85728e7 commit 1399d59
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@
}
],
"no-internal-module": true,
"no-trailing-whitespace": true,
"jsdoc-format": true,
"no-inferrable-types": [true],
"no-null-keyword": true,
"prefer-const": true,
"no-return-await": true,
"no-switch-case-fall-through": true,
"triple-equals": [true, "allow-undefined-check"],
"jsdoc-format": true
"no-trailing-whitespace": true,
"prefer-const": true,
"triple-equals": [true, "allow-undefined-check"]
}
}

0 comments on commit 1399d59

Please sign in to comment.