csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

Comments are not automatically wrapped.

Open make1980 opened this issue 5 months ago • 3 comments

Single line/multi line comments are not automatically wrapped/checked by csharpier.

Input:

// Test very long line comment.
// Second line of long comment.
var someVariable = someValue;

Width = 10

Output:

// Test very long line comment.
// Second line of long comment.
var someVariable = someValue;

Expected behavior:

// Test
// very
// long
// line
// comment.
// Second
// line
// of
// long
// comment.
var someVariable =
    someValue;

make1980 avatar Sep 24 '24 06:09 make1980