google / styleguide

Style guides for Google-originated open-source projects
https://google.github.io/styleguide/
Apache License 2.0
37.46k stars 13.3k forks source link

Java Style Guide: Line wrap at array declarator brackets #258

Open kazachka opened 7 years ago

kazachka commented 7 years ago

Google Style Guide does not explain how to wrap line at array declarator brackets. Can you please answer, which of that cases is valid: 1.

int x = new int[
    ] {1, 2};

2.

int x = new int
    [] {1, 2};

If possible, please update style guide to include that information.

grv87 commented 5 years ago

I would prohibit both cases