I have this query:
SELECT
column1,column2,column3
FROM
table_stage
Then I set prettier to put the comma before the value but I get this result:
SELECT
column1
, column2
, column3
FROM
table_stage
Is there a way in prettier to remove the space after the comma?
Thanks!