如果未使用取消令牌,C# linter 添加自定义警告(IDE:Rider)

发布于 2025-01-09 20:08:56 字数 297 浏览 0 评论 0原文

我希望在不使用取消令牌的情况下添加警告,例如:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不美如何 2025-01-16 20:08:56

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":

Rider settings

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文