diff --git a/all.json b/all.json index 4f6897a..46b6c51 100644 --- a/all.json +++ b/all.json @@ -5,17 +5,22 @@ "no-parameter-reassignment": true, "typedef": [true, "call-signature"], - "readonly-keyword": true, - "readonly-array": true, - "no-let": true, - "no-object-mutation": true, + "no-array-mutation": true, "no-delete": true, + "no-let": true, "no-method-signature": true, + "no-object-mutation": true, + "readonly-array": true, + "readonly-keyword": true, - "no-this": true, "no-class": true, - "no-mixed-interface": true, "no-expression-statement": true, - "no-if-statement": true + "no-if-statement": true, + "no-loop-statement": true, + "no-mixed-interface": true, + "no-reject": true, + "no-this": true, + "no-throw": true, + "no-try": true } } diff --git a/tslint-immutable.json b/tslint-immutable.json index b6329c2..6069888 100644 --- a/tslint-immutable.json +++ b/tslint-immutable.json @@ -1,6 +1,7 @@ { "rulesDirectory": "./rules", "rules": { + "no-array-mutation": false, "no-class": false, "no-delete": false, "no-expression-statement": false, @@ -10,8 +11,11 @@ "no-method-signature": false, "no-mixed-interface": false, "no-object-mutation": false, + "no-reject": false, "no-this": false, - "readonly-keyword": false, - "readonly-array": false + "no-throw": false, + "no-try": false, + "readonly-array": false, + "readonly-keyword": false } }