Skip to content
← Back to rules

unicorn/prefer-optional-catch-binding Style

🛠️ An auto-fix is available for this rule.

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 using the config file or in the CLI, you can use:

json
{
  "rules": {
    "unicorn/prefer-optional-catch-binding": "error"
  }
}
ts
import { defineConfig } from "oxlint";

export default defineConfig({
  rules: {
    "unicorn/prefer-optional-catch-binding": "error",
  },
});
bash
oxlint --deny unicorn/prefer-optional-catch-binding

Version ​

This rule was added in v0.0.17.

References ​