Skip to content

Commit

Permalink
feat: More rules (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
wzalazar authored Dec 11, 2018
1 parent 6605e70 commit 0d407f6
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion poet-tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,22 @@
],
// tslint-immutable Recommended built-in rules
"no-var-keyword": true,
"no-parameter-reassignment": true
"no-parameter-reassignment": true,
"no-magic-numbers": {
"severity": "warning",
"options": [true]
},
"no-implicit-dependencies": {
"severity": "warning",
"options": [true]
},
"comment-format": {
"severity": "warning",
"options": [true]
},
"promise-function-async": {
"severity": "warning",
"options": [true]
}
}
}

0 comments on commit 0d407f6

Please sign in to comment.