disallowMultipleSpaces

Disallows multiple indentation characters (tabs or spaces) between identifiers, keywords, and any other token

Type: Boolean or Object

Values: true or {"allowEOLComments": true} to allow on-line comments to be ignored

Examples

"disallowMultipleSpaces": true
// or
"disallowMultipleSpaces": {"allowEOLComments": true}
Valid
var x = "hello";
function y() {}
Valid for {"allowEOLComments": true}
var x = "hello"    // world;
function y() {}
Invalid
var x  = "hello";
function  y() {}
Rule source
Test source