Description
It is basically as the title suggests. I have seen multiple threads in this forum regarding this but I haven’t been able to find a solution. I am using CLI to run sonarscanner and the following is the sonarscanner running command
sonar-scanner \
-Dsonar.organization=xxx \
-Dsonar.projectKey=xxx \
-Dsonar.sources=. \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.exclusions=**/node_modules/**/* \
-Dsonar.token=xxx \
-Dsonar.c.file.suffixes=- \
-Dsonar.cpp.file.suffixes=- \
-Dsonar.pullrequest.key=xxx
~
The sonarscanner version is 5.0.1.3006. I have censored the certain values with xxx for privacy reasons. This is analyzing the entire codebase rather than the individual PR. Am I missing any parameters?