You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jmeter.apache.org by Apache Wiki <wi...@apache.org> on 2017/12/07 17:50:48 UTC

[Jmeter Wiki] Update of "CodeStyleGuidelines" by ham1

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Jmeter Wiki" for change notification.

The "CodeStyleGuidelines" page has been changed by ham1:
https://wiki.apache.org/jmeter/CodeStyleGuidelines?action=diff&rev1=6&rev2=7

  In order to improve readability ([[https://dzone.com/articles/why-code-readability-matters|Why readability matters]]) here are some code style guidelines for the JMeter project.
  
  == Java ==
+ 
+ We now enforce many of these rules, and more using checkstyle.
  
  === Indentation/White space ===
  
@@ -46, +48 @@

  
  === Other ===
   * Import order
-   * TBC
+   * java, javax, org, net, com, others
   * Import spacing
-   * TBC
+   * line break between each group
   * No wildcard (`.*`) imports
   * Method line length (soft limit of 50)
   * Class line length (soft limit of 500)