Skip to content

Commit 918d239

Browse files
authoredNov 28, 2018
fix(no-console): Warns about console uses instead of erroring.
1 parent 8fc077d commit 918d239

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎configs/tslint.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
"no-arg": true,
5656
"no-bitwise": true,
5757
"no-conditional-assignment": true,
58-
"no-console": [
59-
true
60-
],
58+
"no-console": {
59+
"severity": "warning"
60+
},
6161
"no-construct": false,
6262
"no-debugger": true,
6363
"no-duplicate-super": true,

0 commit comments

Comments
 (0)
Please sign in to comment.