如何根据 Visual Studio 的 SonarLint 问题类型设置严重性?
How to set severity based on the issue type for SonarLint for Visual Studio?
我想将 Bugs 和 Vulnerabilities 设置为错误,将 Code Smells 设置为 Visual Studio 中 SonarLint 扩展的警告。我更喜欢一般地设置它,而不是右键单击每个问题并设置其严重性。我可以这样做吗?如果是,请告诉我怎么做。
感谢和问候,
阿俊
由于每个规则的规范都是公开的:https://github.com/SonarSource/sonar-dotnet/tree/3ab2e10b4effa8760b3ecd4fbb2b3d59f43f1b7f/analyzers/rspec/cs,因此编写一个程序来生成包含所有规则的 .editorconfig
非常容易。
这里是:https://github.com/Peska/SonarAnalyzersRules/blob/master/.editorconfig
按类型分组 - CODE_SMELL
、BUG
、SECURITY_HOTSPOT
、VULNERABILITY
- 并按 Severity
排序未来。
我不能在这里粘贴完整的 .editorconfig
作为答案,因为有 30k 个字符的限制。
我想将 Bugs 和 Vulnerabilities 设置为错误,将 Code Smells 设置为 Visual Studio 中 SonarLint 扩展的警告。我更喜欢一般地设置它,而不是右键单击每个问题并设置其严重性。我可以这样做吗?如果是,请告诉我怎么做。
感谢和问候,
阿俊
由于每个规则的规范都是公开的:https://github.com/SonarSource/sonar-dotnet/tree/3ab2e10b4effa8760b3ecd4fbb2b3d59f43f1b7f/analyzers/rspec/cs,因此编写一个程序来生成包含所有规则的 .editorconfig
非常容易。
这里是:https://github.com/Peska/SonarAnalyzersRules/blob/master/.editorconfig
按类型分组 - CODE_SMELL
、BUG
、SECURITY_HOTSPOT
、VULNERABILITY
- 并按 Severity
排序未来。
我不能在这里粘贴完整的 .editorconfig
作为答案,因为有 30k 个字符的限制。