Checks if the array is instantiated using [] which is shorter and cleaner, not with new.

Configuration

{
    "type": "ArrayLiteral",
    "props": {
        "severity": "ERROR"
    }
}

Valid

var test:Array = [];

Invalid

var test:Array = new Array();