This repository was archived by the owner on May 26, 2023. It is now read-only.

Description
We should add a new rule for trailing commas?
Reference eslint implementation
https://eslint.org/docs/rules/comma-dangle
For example, the following function
function sampleFunction() as object
if GetGlobalAA().user = invalid then
user = {
_name : "",
}
GetGlobalAA()["user"] = user
end if
return invalid
end function
would warn about the trailing comma , in the code block.