tslint: Enable indent

The project seems to use tabs, so we can enable the tslint rule for it.
This commit is contained in:
Simon Marchi 2018-07-18 11:01:46 -04:00
commit 37570139e3

View file

@ -3,6 +3,7 @@
"extends": "tslint:recommended",
"rules": {
"no-null-keyword": true,
"indent": [true, "tabs"],
/* Rules in tslint:recommended that we don't follow yet. */
"array-type": false,
"arrow-parens": false,
@ -12,7 +13,6 @@
"comment-format": false,
"curly": false,
"eofline": false,
"indent": false,
"interface-name": false,
"max-classes-per-file": false,
"max-line-length": false,