Clean up no-unreachable lint errors

This commit is contained in:
Kevin Sawicki 2016-01-19 10:21:18 -08:00
parent fbfbf2158a
commit 45ddbb6d67
2 changed files with 0 additions and 2 deletions

View file

@ -111,7 +111,6 @@ var metaToValue = function(meta) {
return new Date(meta.value);
case 'exception':
throw new Error(meta.message + "\n" + meta.stack);
break;
default:
if (meta.type === 'function') {
// A shadow class to represent the remote function object.

View file

@ -19,7 +19,6 @@
"linebreak-style": 0,
"no-console": 0,
"no-undef": 0,
"no-unreachable": 0,
"no-unused-vars": 0
},
"env": {