From 460562d485ba84fd1cfbf25454a4ffaa2f2c674b Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 4 Aug 2019 13:18:26 +0300 Subject: [PATCH] tslint: enable no-floating-promises --- tslint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index 5de5cf89..f1048f51 100644 --- a/tslint.json +++ b/tslint.json @@ -22,6 +22,7 @@ "no-bitwise": false, "interface-over-type-literal": false, "interface-name": false, - "no-submodule-imports": false + "no-submodule-imports": false, + "no-floating-promises": true } }