jiller / agentsmithplugin

Automatically exported from code.google.com/p/agentsmithplugin
0 stars 0 forks source link

Generated comments should be compliant to StyleCop #126

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The 'add comment stub' quick-fix should generate code that is compliant to
the comment formatting rules of Microsoft StyleCop.

StyleCop demands a single space between the introducing "///" and the
following comment tags and texts. Therefore, Agent Smith should not
generate code like this:

///<summary>
///HERE COMES MY TEXT
///</summary>
///<param name="department"></param>
///<returns></returns>
public EmployeeCollection FindEmployees(Department department)

Instead, the code should look like this:

/// <summary>
/// HERE COMES MY TEXT
/// </summary>
/// <param name="department"></param>
/// <returns></returns>
public EmployeeCollection FindEmployees(Department department)

Original issue reported on code.google.com by kradew...@saz.net on 27 Apr 2009 at 9:42

GoogleCodeExporter commented 8 years ago

Original comment by forever....@gmail.com on 27 Apr 2009 at 1:14

GoogleCodeExporter commented 8 years ago
Fixed in 1.3.8

Original comment by forever....@gmail.com on 16 Jul 2009 at 8:00