从 SonarLint 中排除包根?
Exclude a package root from SonarLint?
如何在 SonarLint 中排除特定根包中的所有 类?
比如我要排除所有类比如foo.bar.xxx
和foo.bar.yyy.zzz
.
我试过这两个都没有用:
sonar.exclusions = /foo/bar/**
sonar.exclusions = **/foo/bar/**
我正在使用 Intellij 插件,但我假设语法将遵循此处记录的相同语法 (https://docs.sonarqube.org/display/SONAR/Narrowing+the+Focus)
不幸的是,sonar.exclusions
属性 被 SonarLint for IntelliJ(和 Eclipse)忽略了。有一张票可以增加对此的支持,请随意投票:
将排除项添加到 "Test file regular expressions" 字段至少适用于 Eclipse 插件。
如何在 SonarLint 中排除特定根包中的所有 类?
比如我要排除所有类比如foo.bar.xxx
和foo.bar.yyy.zzz
.
我试过这两个都没有用:
sonar.exclusions = /foo/bar/**
sonar.exclusions = **/foo/bar/**
我正在使用 Intellij 插件,但我假设语法将遵循此处记录的相同语法 (https://docs.sonarqube.org/display/SONAR/Narrowing+the+Focus)
不幸的是,sonar.exclusions
属性 被 SonarLint for IntelliJ(和 Eclipse)忽略了。有一张票可以增加对此的支持,请随意投票:
将排除项添加到 "Test file regular expressions" 字段至少适用于 Eclipse 插件。