Checks that each variable declaration is in its own statement and on its own line.

Configuration

{
    "type": "MultipleVariableDeclarations",
    "props": {
        "severity": "WARNING"
    }
}

Invalid

var d,e,f;

var d; var e;