pve-eslint/eslint/docs/rules/no-multi-assign.md
Dominik Csapak eb39fafa4f first commit
includes a (minimal) working wrapper

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2020-04-06 15:06:03 +02:00

49 lines
920 B
Markdown

# Disallow Use of Chained Assignment Expressions (no-multi-assign)
Chaining the assignment of variables can lead to unexpected results and be difficult to read.
```js
(function() {
const foo = bar = 0; // Did you mean `foo = bar == 0`?
bar = 1; // This will not fail since `bar` is not constant.
})();
console.log(bar); // This will output 1 since `bar` is not scoped.
```
## Rule Details
This rule disallows using multiple assignments within a single statement.
Examples of **incorrect** code for this rule:
```js
/*eslint no-multi-assign: "error"*/
var a = b = c = 5;
const foo = bar = "baz";
let a =
b =
c;
```
Examples of **correct** code for this rule:
```js
/*eslint no-multi-assign: "error"*/
var a = 5;
var b = 5;
var c = 5;
const foo = "baz";
const bar = "baz";
let a = c;
let b = c;
```
## Related Rules
* [max-statements-per-line](max-statements-per-line.md)