csharpier
csharpier copied to clipboard
Inconsistent empty line handling before the csharpier-ignore comment
Input:
var foo = 1;
var bar = 2;
// csharpier-ignore
var baz = 3;
Output: Inconsistent empty line handling before the // csharpier-ignore
comment
var foo = 1;
var bar = 2;
// csharpier-ignore
var baz = 3;
Expected behavior: Allow a blank line before the // csharpier-ignore
comment like with other comments and statements
var foo = 1;
var bar = 2;
// csharpier-ignore
var baz = 3;