Skip to content

Commit 1ae768c

Browse files
authoredSep 27, 2018
fix: Makes no-void-expression a warning instead of an error.
1 parent 64f0058 commit 1ae768c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎configs/tslint.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@
8585
"no-unused-expression": true,
8686
"no-use-before-declare": true,
8787
"no-var-keyword": true,
88-
"no-void-expression": true,
88+
"no-void-expression": {
89+
"severity": "warning"
90+
},
8991
"prefer-conditional-expression": true,
9092
"prefer-object-spread": true,
9193
"radix": true,

0 commit comments

Comments
 (0)
Please sign in to comment.