Is there any tool equivalent to JALOPY which is avaliable for JAVA?

Hi,

Can anybody tell whether there is any equivalent tool for dotnet which does checklist on the code written (other than FxCop) For java there is a tool called JALOPY which does the checklist as well as formats the code by itself. So need a tool which is compatible for dotnet.

Thanks in advance,
Rajesh.


Answer this question

Is there any tool equivalent to JALOPY which is avaliable for JAVA?

  • Martin H

    Code formatting is integrated in Visual Studio (Edit -> Advanced -> Format Document), which is highly customizable (Tools -> Options -> Text Editor -> (language) -> Formatting). For even more control over the style, you can get Polystyle (formerly Trita), which supports a whole range of languages.

    What kind of checks does Jalopy's checklist include If it's not on the source code/formatting level, you probably can do them in FxCop, which can be extended with custom rules (visit http://forums.microsoft.com/msdn/ShowForum.aspx ForumID=98 for help).

  • Is there any tool equivalent to JALOPY which is avaliable for JAVA?