gpt4 book ai didi

c# - 如何配置 omnisharp syntastic 语法检查器更宽松?

转载 作者:太空狗 更新时间:2023-10-29 21:39:06 24 4
gpt4 key购买 nike

我关注了this guide为 c# 设置我的 vim。我工作得很好,但我有一个烦恼:合成检查器对我有点太苛刻了。具体来说,它建议我更改此行:

var parser = new Parser(configuration, findReservations: true);

带有消息“冗余参数名称规范”。当然我可以照它说的做,但我碰巧喜欢我的冗余参数规范。我的代码的读者可能不记得那个 bool 值的用途。那么...我怎样才能告诉 syntastic(或 omnisharp)放松这种警告?

最佳答案

修改服务器/bin/Debug文件夹下的config.json文件。在我的机器上,服务器位于 ~/.vim/bundle/Omnisharp/server/OmniSharp

您会在 default config file 中看到一些示例忽略的代码问题.

要忽略此特定问题,请添加此规则:

"^Redundant argument name specification$"

如果这是唯一的规则,除了默认规则之外,config.js 文件的 IgnoredCodeIssues 部分将如下所示:

"IgnoredCodeIssues": [
"^Keyword 'private' is redundant. This is the default modifier.$",
".* should not separate words with an underscore.*",
"^Redundant argument name specification$"
],

关于c# - 如何配置 omnisharp syntastic 语法检查器更宽松?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26920887/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com