Hello.
I’m having some problem with SonarQube to capture this code smell that I introduced to my code plugins/backend/src/myFile.ts
Change added on the PR
let j = 0;
for (let i = 0; i < 10; j++) { // Noncompliant
// ...
i++;
}
The file shows to be capture on the analisys according to the following SonarScan execution
...
22:56:53.288 DEBUG: 'plugins/backend/src/myFile.ts' generated metadata with charset 'UTF-8'
22:56:53.289 DEBUG: 'plugins/backend/src/myFile.ts' indexed with language 'ts'
...
22:57:29.881 DEBUG: Cache entry extracted for key 'js:filemetadata:9.13.0.20537:dm-project:plugins/backend/src/myFile.ts'
22:57:29.882 DEBUG: Cache strategy set to 'WRITE_ONLY' for file 'plugins/backend/src/myFile.ts' as the current file is changed
22:57:29.882 DEBUG: Analyzing file: file:///app/plugins/backend/src/myFile.ts
22:57:29.884 DEBUG: Analyzing file "/app/plugins/backend/src/myFile.ts" with linterId "unchanged"
22:57:29.932 DEBUG: Cache entry created for key 'jssecurity:ucfgs:SEQ:9.13.0.20537:dm-project:plugins/backend/src/myFile.ts' containing 1 file(s)
22:57:29.934 DEBUG: Cache entry created for key 'jssecurity:ucfgs:JSON:9.13.0.20537:dm-project:plugins/backend/src/myFile.ts'
22:57:29.934 DEBUG: Cache entry created for key 'js:filemetadata:9.13.0.20537:dm-project:plugins/backend/src/myFile.ts'
...
22:57:35.821 DEBUG: Detection of duplications for /app/plugins/backend/src/myFile.ts
...
22:57:35.853 INFO: CPD Executor CPD calculation finished (done) | time=149ms
22:57:35.874 DEBUG: SCM revision ID '25a1cf898cd12738ab6b45600906c92b4788570a'
22:57:36.021 INFO: SCM writing changed lines
22:57:36.030 INFO: Merge base sha1: a801abfd2a75a544af59959a892bae4050b94d91
22:57:36.031 DEBUG: SCM reported changed lines for 0 files in the branch
22:57:36.031 INFO: SCM writing changed lines (done) | time=10ms
22:57:36.042 INFO: Analysis report generated in 175ms, dir size=269.1 kB
22:57:36.412 INFO: Analysis report compressed in 370ms, zip size=196.4 kB
22:57:36.413 INFO: Analysis report generated in /app/.scannerwork/scanner-report
22:57:36.413 DEBUG: Upload report
22:57:36.451 DEBUG: POST 200 https://sonarqube.server.com/api/ce/submit?projectKey=dm-project&projectName=dm-project&characteristic=pullRequest%3D1543 | time=37ms
22:57:36.455 INFO: Analysis report uploaded in 42ms
22:57:36.457 DEBUG: Report metadata written to /app/.scannerwork/report-task.txt
22:57:36.457 INFO: ANALYSIS SUCCESSFUL, you can find the results at: https://sonarqube.server.com/dashboard?id=dm-project&pullRequest=1543
22:57:36.457 INFO: Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
22:57:36.457 INFO: More about the report processing at https://sonarqube.server.com/api/ce/task?id=AYwnmgyxXSTshvwGQauT
22:57:36.462 DEBUG: Post-jobs :
22:57:36.478 DEBUG: eslint-bridge server will shutdown
22:57:41.480 DEBUG: eslint-bridge server closed
22:57:41.480 INFO: Time spent writing ucfgs 176ms
22:57:42.244 INFO: Analysis total time: 1:09.568 s
22:57:42.247 INFO: ------------------------------------------------------------------------
22:57:42.247 INFO: EXECUTION SUCCESS
22:57:42.247 INFO: ------------------------------------------------------------------------
22:57:42.247 INFO: Total time: 1:17.718s
22:57:42.431 INFO: Final Memory: 115M/408M
22:57:42.431 INFO: ------------------------------------------------------------------------
When I go to https://sonarqube.server.com to check my PR analysis, I see that all pass and it does not flags the Code Smell.
- What am I missing here?
- Should I see something else on the logs to guarantee a code smell was found?
- How would be the best way to trace the problem down?
Thanks for your support