To give an example of what the linter should reject/fix:
merge(
local.a,
local.b,
local.c
)
should become
merge(
local.a,
local.b,
local.c,
)
I did not check the linting code, but syntactically my suggestion is very similar to the existing lint. So perhaps this is a very easy to accomplish improvement.
To give an example of what the linter should reject/fix:
should become
I did not check the linting code, but syntactically my suggestion is very similar to the existing lint. So perhaps this is a very easy to accomplish improvement.