mirror of
https://git.proxmox.com/git/pve-eslint
synced 2025-10-18 20:32:59 +00:00

includes a (minimal) working wrapper Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
488 B
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