From 9e2f5401d00d4191a43e9709eb36c27741eff6ee Mon Sep 17 00:00:00 2001 From: Godzil Date: Thu, 31 May 2018 23:56:52 +0100 Subject: [PATCH] Update tslint.json --- tslint.json | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tslint.json b/tslint.json index 1a58a06..f479faf 100644 --- a/tslint.json +++ b/tslint.json @@ -9,23 +9,21 @@ "curly": false, "eofline": false, "forin": true, - "indent": [true, 2], + "indent": [true, "spaces", 2], "interface-name": true, "jsdoc-format": true, "label-position": true, "max-line-length": [true, 140], - "member-ordering": [true, - "public-before-private", - "static-before-instance", - "variables-before-functions" - ], + "member-ordering": false, + "no-shadowed-variable": false, "array-type": [true, "array"], + "object-literal-sort-keys": false, + "trailing-comma": false, "no-any": false, "no-arg": true, "no-bitwise": true, "no-console": [true, "debug", - "info", "time", "timeEnd", "trace" @@ -42,7 +40,6 @@ "no-use-before-declare": false, "no-var-requires": true, "one-line": [true, - "check-catch", "check-whitespace" ], "quotemark": [true, "single"],