Given:
[ # comment
first,
second,
third
] # another comment
Notice that there's no magic trailing comma, so the list will be collapsed.
Ruff:
[first, second, third] # comment
# another comment
Black:
[first, second, third] # comment # another comment