Skip to content

Commit

Permalink
TASK: tslint now prohibits console.x and debugger (#2144)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesAlias authored and mstruebing committed Sep 27, 2018
1 parent 3929bc3 commit fdffb6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"rules": {
"interface-name": false,
"member-ordering": false,
"no-console": false,
"no-debugger": false,
"no-console": true,
"no-debugger": true,
"no-delete": true,
"no-method-signature": true,
"no-let": true,
Expand Down

0 comments on commit fdffb6a

Please sign in to comment.