From 2862bea3af59dbfc70339c6c3e81ed97391aaeeb Mon Sep 17 00:00:00 2001 From: Kenneth Sills <132029135+Kenneth-Sills@users.noreply.github.com> Date: Mon, 5 Aug 2024 18:54:26 +0000 Subject: [PATCH] fix: re-enable `no-unreachable`, since TS does NOT handle it by default Not marked as a breaking change since this was *intended* to be enabled de-facto. Closes #347. --- lib/shared.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/shared.js b/lib/shared.js index 306550be..d226d38e 100644 --- a/lib/shared.js +++ b/lib/shared.js @@ -279,7 +279,6 @@ module.exports = { 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', - 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'valid-typeof': 'off', // The following rules are enabled in Airbnb config, but are recommended to be disabled within TypeScript projects