[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.
This commit is contained in:
Steven Evans 2018-06-24 21:49:07 -04:00
parent 178066289e
commit 1857103511

@ -44,7 +44,7 @@
],
"no-any": false,
"no-inferrable-types": [
true,
false,
"ignore-params",
"ignore-properties"
],