foo =
[ ("xx", "xx")
, ("xx", "xxx")
, ("xx", "xxx")
, ( "xx"
, "xx"
)
--
, ("xx" , "xxxxx")
, ("xxx", "xxxxx")
, ("xx" , "xx")
]
Note that the formatting of the element before the comment is not consistent with the other elements.
A workaround is butting the comment after the comma:
foo =
[ ("xx" , "xx")
, ("xx" , "xxx")
, ("xx" , "xxx")
, ("xx" , "xx")
, -- xxxxxx xxx
("xx" , "xxxxx")
, ("xxx", "xxxxx")
, ("xx" , "xx")
]