From 3548290ff266cba0e0d1cd4f9384c25ca985db5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?= Date: Wed, 13 Feb 2019 23:43:55 +0900 Subject: [PATCH] Fix tslint.json styles (#4219) --- tslint.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tslint.json b/tslint.json index d7d9f2b56..d24523ae5 100644 --- a/tslint.json +++ b/tslint.json @@ -7,15 +7,15 @@ "jsRules": {}, "rules": { "align": false, - "indent": ["tab"], - "quotemark": ["single"], + "indent": [true, "tabs"], + "quotemark": [true, "single"], "no-var-requires": false, "no-string-throw": false, "trailing-comma": [false], "object-literal-sort-keys": false, "curly": false, "no-console": [false], - "no-empty":false, + "no-empty": false, "ordered-imports": [false], "arrow-parens": false, "array-type": [true, "array"], @@ -31,11 +31,12 @@ "max-classes-per-file": false, "member-ordering": [false], "ban-types": [ + true, "Object" ], "ban": [ true, - {"name": ["*", "forEach"], "message": "Use for-of loop instead."} + { "name": ["*", "forEach"], "message": "Use for-of loop instead." } ], "no-duplicate-string": false, "no-commented-code": false,