💼 This rule is enabled in the ✅ recommended
config.
🔧 This rule is automatically fixable by the --fix
CLI option.
If the catch
binding parameter is not used, it should be omitted.
try {} catch (notUsedError) {}
try {} catch ({message}) {}
try {} catch {}
try {} catch (error) {
console.error(error);
}