no-unhandled | might-throw | use-error-cause |
---|---|---|
yarn add -D eslint-plugin-exception-handling
npm i -D eslint-plugin-exception-handling
pnpm add -D eslint-plugin-exception-handling
Sample eslint.config.js
:
For TypeScript:
// @ts-check
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
import { plugin as ex } from "eslint-plugin-exception-handling";
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{ plugins: { ex }, rules: { "ex/no-unhandled": "error" } }
);
For JavaScript:
import globals from "globals";
import pluginJs from "@eslint/js";
import { plugin as ex } from "eslint-plugin-exception-handling";
export default [
{ files: ["**/*.js"], languageOptions: { sourceType: "commonjs" } },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
{ plugins: { ex } },
{ rules: { "ex/no-unhandled": "error" } },
];
Name           | Description |
---|---|
might-throw | Warns about function calls that might throw exceptions. |
no-unhandled | Warns about function calls that might throw exceptions and are not handled at all further up the stack. |
use-error-cause | On Error re-thrown, forces the use of cause property in order to preserve stack traces. See: Error: cause |