Results will be shown and updated as you type.
Requires spaces after unary word operators.
Examples of incorrect code for this rule:
typeof!a 1
typeof!a
void{a:0} 1
void{a:0}
new[a][0] 1
new[a][0]
delete(a.b) 1
delete(a.b)
Examples of correct code for this rule:
delete a.b 1
delete a.b
new C 1
new C
void 0 1
void 0
This rule was introduced in ESLint v0.1.4 and removed in v0.10.0.