maxvetrenko / checkstyle

Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard. By default it supports the Sun Code Conventions, but is highly configurable. It can be invoked with an ANT task and a command line program.
http://checkstyle.sourceforge.net/
GNU Lesser General Public License v2.1
0 stars 0 forks source link

New Check: JavadocSelfExplanatoryMethod #11

Closed maxvetrenko closed 10 years ago

maxvetrenko commented 10 years ago

Measure method complexity and demand JavaDoc base for complex methods, and skip JavaDoc for banal methods. Determine the degree of method's difficulty by number of lines. http://google-styleguide.googlecode.com/svn/trunk/javaguide.html#s7.3.1-javadoc-exception-self-explanatory

romani commented 10 years ago

Please provide checkstyle configuration that you expect to implement.