diff options
| author | Acid Chicken (硫酸鶏) <root@acid-chicken.com> | 2019-02-13 23:43:55 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-13 23:43:55 +0900 |
| commit | 3548290ff266cba0e0d1cd4f9384c25ca985db5f (patch) | |
| tree | e3a78d0f5a73ea5d16e7095735eec8d7dcf9d6ca /tslint.json | |
| parent | Update dependencies (diff) | |
| download | sharkey-3548290ff266cba0e0d1cd4f9384c25ca985db5f.tar.gz sharkey-3548290ff266cba0e0d1cd4f9384c25ca985db5f.tar.bz2 sharkey-3548290ff266cba0e0d1cd4f9384c25ca985db5f.zip | |
Fix tslint.json styles (#4219)
Diffstat (limited to 'tslint.json')
| -rw-r--r-- | tslint.json | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tslint.json b/tslint.json index d7d9f2b56f..d24523ae5c 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, |