Prefer omitting the catch binding parameter If the catch binding parameter is not used, it should be omitted. This rule is fixable. Fail try {} catch (notUsedError) {} try {} catch ({message}) {} Pass try {} catch {} try {} catch (error) { console.error(error); }