pve-eslint/eslint/docs/rules/space-unary-word-ops.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

488 B

space-unary-word-ops: require spaces after unary word operators

(removed) This rule was removed in ESLint v0.10.0 and replaced by the space-unary-ops rule.

Require spaces following unary word operators.

Rule Details

Examples of incorrect code for this rule:

typeof!a
void{a:0}
new[a][0]
delete(a.b)

Examples of correct code for this rule:

delete a.b
new C
void 0