opencode-sonarqube 1.2.37 → 1.2.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16869,8 +16869,7 @@ async function generatePropertiesContent(options, config2, directory) {
|
|
|
16869
16869
|
"**/*.yaml",
|
|
16870
16870
|
"**/*.yml"
|
|
16871
16871
|
].join(",");
|
|
16872
|
-
sourceConfig.push(`sonar.inclusions=${allInclusions}`);
|
|
16873
|
-
sourceConfig.push(`sonar.exclusions=${exclusions}`, `sonar.test.inclusions=${getTestPatterns(detection.languages)}`, "", "# Language-Specific Configuration");
|
|
16872
|
+
sourceConfig.push(`sonar.inclusions=${allInclusions}`, `sonar.exclusions=${exclusions}`, `sonar.test.inclusions=${getTestPatterns(detection.languages)}`, "", "# Language-Specific Configuration");
|
|
16874
16873
|
lines.push(...sourceConfig);
|
|
16875
16874
|
if (detection.languages.includes("typescript") || detection.languages.includes("javascript")) {
|
|
16876
16875
|
const tsJsConfig = ["", "# TypeScript/JavaScript"];
|