Re: [DISCUSS] Coding style conventions + auto-formatting

2016-11-08 Thread sblackmon
I’ve set up checkstyle and scalastyle (bound to validate phase, no fail on error) over in  https://github.com/steveblackmon/incubator-streams-master/tree/STREAMS-439 https://github.com/steveblackmon/incubator-streams/tree/STREAMS-439 and started refactoring code to match the google style in

Re: [DISCUSS] Coding style conventions + auto-formatting

2016-11-02 Thread Praveen Adlakha
Hi All, +1 for maven checkstyle plugin it's a widely accepted solution to the problem at hand. Minor nit: We can think in terms of creating a different profile to run checkstyle plugin it kind of ease the development when a developer is working on enhancements which require a lot of code.

Re: [DISCUSS] Coding style conventions + auto-formatting

2016-10-28 Thread Timothy Spann
> +1 for Google. Easy to import into any IDE and enforced with checkstyle. > > - > https://github.com/twitter/commons/blob/master/src/java/com/twitter/common/styleguide.md > > - https://opennlp.apache.org/code-conventions.html > > I'm sure there are

[DISCUSS] Coding style conventions + auto-formatting

2016-10-27 Thread Joey Frazee
With some new contributors and project members joining, a question came up around coding conventions. Having something official is probably a necessary evil. Here are a few options: - https://google.github.io/styleguide/javaguide.html -