@soulbatical/tetra-dev-toolkit 1.5.0 → 1.5.1

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.
@@ -110,7 +110,9 @@ export async function check(projectPath) {
110
110
  else if (lower.includes('codeql')) result.details.tool = 'codeql'
111
111
  else if (lower.includes('sonar')) result.details.tool = 'sonarqube'
112
112
  else if (lower.includes('snyk')) result.details.tool = 'snyk'
113
+ // CI-only SAST (e.g. semgrep --config auto) counts as config too
113
114
  result.details.configFound = true
115
+ result.score += 1
114
116
  }
115
117
  break
116
118
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulbatical/tetra-dev-toolkit",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "publishConfig": {
5
5
  "access": "restricted"
6
6
  },