Skip to content

Commit

Permalink
Updated the json files with missing rules. (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Jun 5, 2019
1 parent 86fb92e commit 93ea389
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
19 changes: 12 additions & 7 deletions all.json
Expand Up @@ -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
}
}
8 changes: 6 additions & 2 deletions tslint-immutable.json
@@ -1,6 +1,7 @@
{
"rulesDirectory": "./rules",
"rules": {
"no-array-mutation": false,
"no-class": false,
"no-delete": false,
"no-expression-statement": false,
Expand All @@ -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
}
}

0 comments on commit 93ea389

Please sign in to comment.