ReSharper - how to disable generation of rubbish documentation headers in Code Cleanup

后端 未结 2 1042
面向向阳花
面向向阳花 2021-01-12 07:40

We\'re using ReSharper 6.0 with StyleCop for ReSharper.

Although we use the StyleCop rule that members must have documentation headers, we don\'t want ReSharper\'s c

2条回答
  •  既然无缘
    2021-01-12 07:52

    The second step, after blocking code generation is Removing the rubbish. I used a regex Search/Replace through visual studio.

    Regex is for header :

    // ---.*\r\n\/\/.*\r\n\/\/.*\r\n\/\/.*\r\n\/\/.*\r\n\/\/.*\r\n.*\r\n\/\/.-{116}
    

    Regex to remove Generated summaries

    \s{4}\/\/\/\s(.*)\r\n.*\r\n.*
    

    Caution : it will remove ALL summaries, even the good ones, so check the replacement scope before launching it. (git checkout might be your friend...)

提交回复
热议问题