Convert index expression to field expression
Create a rule that can convert this code:
local var = param["property"]
Into this code:
local var = param.property
This should be pretty trivial, darklua only needs to check if the string value matches the identifier pattern.