From 1857103511172e696160ea6af075be2ab12e703f Mon Sep 17 00:00:00 2001 From: Steven Evans Date: Sun, 24 Jun 2018 21:49:07 -0400 Subject: [PATCH] [chore] Disable "no-inferrable-types" lint rule After discussing the conflicting 'typedef' vs. 'no-inferrable-types' TSLint rules (https://github.com/palantir/tslint/issues/711) in the Discord #development channel, the conclusion was to disable this rule in order to be uniform and explicit in what all declarations are. Although it's more verbose, it will help us out in the long run. --- tslint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index 4ef866e6b..f1ee12cc8 100644 --- a/tslint.json +++ b/tslint.json @@ -44,7 +44,7 @@ ], "no-any": false, "no-inferrable-types": [ - true, + false, "ignore-params", "ignore-properties" ],