Require Spaces Around Infix Operators (space-infix-ops)

While formatting preferences are very personal, a number of style guides require spaces around operators, such as:

var sum = 1 + 2;

The proponents of these extra spaces believe it make the code easier to read and can more easily highlight potential errors, such as:

var sum = i+++2;

While this is valid JavaScript syntax, it is hard to determine what the author intended.

Rule Details

This rule is aimed at ensuring there are spaces around infix operators.

The following patterns are considered warnings:

a+b
a+ b
a +b
a?b:c

The following patterns are not considered warnings:

a + b
a       + b
a ? b : c

Options

This rule accepts a single options argument with the following defaults:

"space-infix-ops": [2, {"int32Hint": false}]

int32Hint

Set the int32Hint option to true (default is false) to allow write a|0 without space.

var foo = bar|0; // `foo` is forced to be signed 32 bit integer

Version

This rule was introduced in ESLint 0.2.0.

Resources