Checks if the array is instantiated using [] which is shorter and cleaner, not with new.
Configuration
{
"type": "ArrayLiteral",
"props": {
"severity": "ERROR"
}
}
Valid
Invalid
var test:Array = new Array();
Bad array instantiation, use the array literal notation [] which is shorter and cleaner