Hi to everyone, I have an argument with my colleag...
# announcements
m
Hi to everyone, I have an argument with my colleague about data classes) He tells that coding style does not matter in respect of simplicity of code: for example:
Copy code
@field:JsonProperty("i_ui_time_zone")
val iUiTimeZone: Int? = null,
such field he wants to simplify to
Copy code
val i_ui_time_zone: Int? = null,
What's your opinion on this matter? Do you mix camelcase us snake case in your code?