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.
Files changed (2) hide show
  1. package/dist/index.js +1 -2
  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"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-sonarqube",
3
- "version": "1.2.37",
3
+ "version": "1.2.38",
4
4
  "description": "OpenCode Plugin for SonarQube integration - Enterprise-level code quality from the start",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",