How to get access modifiers in same line

Hi
I have this requirement to not have access modifiers in separate line & declaration in next line for Apex Language.
current:
private
List newEventList;
want:
private List newEventList;

Please let me know how can I config same on clang-format file.

Thanks