Change eslint no-unreachable-code from "error" to "warn"

I sometimes add an early `return` while debugging, still want tests to run
This commit is contained in:
Bryan Housel
2017-09-14 13:19:26 -04:00
parent 25eb6269bf
commit b07dad051b
+1
View File
@@ -55,6 +55,7 @@
"no-unused-expressions": "error",
"no-unexpected-multiline": "error",
"no-unused-vars": "warn",
"no-unreachable": "warn",
"no-useless-escape": "off",
"no-void": "error",
"no-warning-comments": "warn",