Clean up no-unreachable lint errors
authorKevin Sawicki <kevinsawicki@gmail.com>
Tue, 19 Jan 2016 18:21:18 +0000 (10:21 -0800)
committerKevin Sawicki <kevinsawicki@gmail.com>
Thu, 21 Jan 2016 16:32:21 +0000 (09:32 -0700)
atom/renderer/api/lib/remote.js
script/eslintrc-base.json

index c43b52c..db5862d 100644 (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.
index 5c9f15e..b85be99 100644 (file)
@@ -19,7 +19,6 @@
     "linebreak-style": 0,
     "no-console": 0,
     "no-undef": 0,
-    "no-unreachable": 0,
     "no-unused-vars": 0
   },
   "env": {