unicorn/prefer-optional-catch-binding Style 
What it does 
Prefers omitting the catch binding parameter if it is unused
Why is this bad? 
It is unnecessary to bind the error to a variable if it is not used.
Examples 
Examples of incorrect code for this rule:
javascript
try {
  // ...
} catch (e) {}Examples of correct code for this rule:
javascript
try {
  // ...
} catch {}How to use 
To enable this rule in the CLI or using the config file, you can use:
bash
oxlint --deny unicorn/prefer-optional-catch-bindingjson
{
  "rules": {
    "unicorn/prefer-optional-catch-binding": "error"
  }
}