From baf03962c1b63a25018d206dd0acc9f152452fd4 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Wed, 26 Dec 2018 21:05:21 -0500 Subject: tools: enable no-useless-catch lint rule This commit enables ESLint's no-useless-catch rule. PR-URL: https://github.com/nodejs/node/pull/25236 Reviewed-By: Luigi Pinca Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell --- .eslintrc.js | 1 + lib/vm.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 6311c7bb5b..7333382fe3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -234,6 +234,7 @@ module.exports = { variables: false, }], 'no-useless-call': 'error', + 'no-useless-catch': 'error', 'no-useless-concat': 'error', 'no-useless-constructor': 'error', 'no-useless-escape': 'error', diff --git a/lib/vm.js b/lib/vm.js index 12c4efa1a2..464724071a 100644 --- a/lib/vm.js +++ b/lib/vm.js @@ -80,7 +80,7 @@ class Script extends ContextifyScript { // Calling `ReThrow()` on a native TryCatch does not generate a new // abort-on-uncaught-exception check. A dummy try/catch in JS land // protects against that. - try { + try { // eslint-disable-line no-useless-catch super(code, filename, lineOffset, -- cgit v1.2.3