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
"disallowMultipleSpaces": true
// or
"disallowMultipleSpaces": {"allowEOLComments": true}
var x = "hello";
function y() {}
{"allowEOLComments": true}var x = "hello" // world;
function y() {}
var x = "hello";
function y() {}