Require spaces following unary word operators (space-unary-word-ops)

Deprecation notice: This rule is deprecated and has been superseded by the space-unary-ops rule. It has be removed in ESLint v0.10.0.

Require spaces following unary word operators.

Rule Details

The following patterns are considered warnings:

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

The following patterns are not considered warnings:

delete a.b
new C
void 0

Version

This rule was introduced in ESLint 0.1.4.

Resources