Checks for whitespace after a token.

Configuration

{
    "type": "WhitespaceAfter",
    "props": {
        "severity": "WARNING",
        "tokens": [ ",", ";" ]
    }
}

Valid

var test = [0, 1, 2,
        3, 5, 6];

Invalid

var test = [0,1,2,3,5,6];test.push(7);