如何在Visual Studio代码中配置SonarLint规则集?

时间:2018-04-03 22:30:40

标签: sonarqube visual-studio-code sonarlint

我在visual studio代码编辑器上安装了声纳lint扩展,我想知道是否有办法启用或禁用分析器使用的规则?有一种方法可以在Visual Studio和Eclipse中完成,但我找不到启用或禁用Visual Studio Code规则的方法。

我在本地服务器上运行SonarQube,我可以在Admin UI页面中禁用和启用规则。如果有办法使用服务器配置SonarLint,那就太酷了。但我不知道该怎么做。如果有人这样做,请指出我正确的方向。

谢谢。

2 个答案:

答案 0 :(得分:3)

目前无法使用允许用户配置(启用/禁用)SonarLint规则的连接模式。

根据SonarLint Google Group的讨论。

  

这个功能很可能会很快添加(在...内)   因为我们已经开始为其他口味开发它   SonarLint(Eclipse)。

此功能目前正在进行中,可以跟踪here

答案 1 :(得分:0)

转到设置并搜索 sonarlint enter image description here

点击Edit in settings.json

将您想要禁用的规则添加到 "sonarlint.rules":,如下所示:

    "javascript:S1488": {
        "level": "off"
    }

规则代码显示在浮动框中 enter image description here