catch
clauses (no-ex-assign)The "extends": "eslint:recommended"
property in a configuration file enables this rule.
If a catch
clause in a try
statement accidentally (or purposely) assigns another value to the exception parameter, it impossible to refer to the error from that point on. Since there is no arguments
object to offer alternative access to this data, assignment of the parameter is absolutely destructive.
This rule disallows reassigning exceptions in catch
clauses.
Examples of incorrect code for this rule:
/*eslint no-ex-assign: "error"*/ try { // code } catch (e) { e = 10; }
Examples of correct code for this rule:
/*eslint no-ex-assign: "error"*/ try { // code } catch (e) { var foo = 10; }
This rule was introduced in ESLint 0.0.9.
© JS Foundation and other contributors
Licensed under the MIT License.
https://eslint.org/docs/rules/no-ex-assign