如果未使用取消令牌,C# linter 添加自定义警告(IDE:Rider)
我希望在不使用取消令牌的情况下添加警告,例如:
var content = await File.ReadAllTextAsync(path)
因为在我们的例子中,应该使用取消令牌,如下所示:
var content = await File.ReadAllTextAsync(path, _cancellation_token)
如果这很重要,我将使用 Rider 作为我的 IDE
有没有任何简单的方法可以做到这?
谢谢
I'm wishing to add a warning if cancellation token is not used, for example:
var content = await File.ReadAllTextAsync(path)
since in our case, cancellation token should be used, as follows:
var content = await File.ReadAllTextAsync(path, _cancellation_token)
I'm using Rider as my IDE if that's important
Is there any simple way to do this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Rider(和 ReSharper)有一个重构“MethodSupportsCancellation”。您可以在设置中将严重性更改为警告错误。
另外,还有一个代码分析规则(CA2016)对此,所以如果您运行代码分析工具(我认为 Rider 默认情况下包含它们),您还可以更改其严重性。
在检查设置中搜索“取消”:
Rider (and ReSharper) have a refactoring "MethodSupportsCancellation". You can change the severity to warning error in the settings.
In addition, there is also a Code analysis rule (CA2016) about this, so if you run the code analysis tool (I think Rider incorporates them by default), you can also change the severity of that.
Search the inspection settings for "cancel":