Turn on more tslint checks (#5379)

This commit is contained in:
Kirk Scheibelhut 2019-03-29 20:55:18 -07:00 committed by Guangcong Luo
parent 081ce82d15
commit a0cde60d17

View File

@ -11,7 +11,16 @@
"member-access": [true, "no-public"],
"no-empty": [true, "allow-empty-catch", "allow-empty-functions"],
"no-string-literal": false,
"interface-over-type-literal": false,
"interface-over-type-literal": true,
"arrow-return-shorthand": true,
"no-angle-bracket-type-assertion": true,
"no-redundant-jsdoc": true,
"no-unsafe-finally": true,
"object-literal-shorthand": true,
"prefer-for-of": true,
"static-this": true,
"triple-equals": true,
"unnecessary-bind": true,
"prefer-const": {
"severity": "warning",
"options": {