SELECT
clause SQL-L038Many database backends regard this as a syntax error,
and as such lint against trailing commas in the SELECT
clause.
But for yet many database backends this is allowed. Hence, for some users this may be something they wish to enforce (in line with Python best practice). Then one should consider disabling it.
SELECT
a,
b,
FROM foo
SELECT
a,
b
FROM foo