Checks that the local variable names conform to a format specified by the format property.

Configuration

{
    "type": "LocalVariableName",
    "props": {
        "severity": "ERROR",
        "format": "^[a-z][a-zA-Z0-9]*$"
    }
}

The above regex allows camelCase names.

Invalid

class Test {
    public function test() {
        var Count:Int = 1;
    }
}