From 941b200bd0db011be2b1bb5294bbf4fb5683866d Mon Sep 17 00:00:00 2001 From: Peter Manser Date: Wed, 22 May 2019 13:19:44 +0200 Subject: [PATCH] feat: Add `no-floating-promises` (#10) BREAKING CHANGE: This adds the stricter rule for floating promises and this may break some builds. To disable the rule, overwrite the rule and set it to `false`. --- tslint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index d17b0bf..fc79656 100644 --- a/tslint.json +++ b/tslint.json @@ -39,6 +39,7 @@ "singleline": "never", "esSpecCompliant": true } - ] + ], + "no-floating-promises" } }