I’m using SonarQube Developer EditionVersion 9.6.1 (build 59531) in a Docker container
and am scanning a JavaScript file.
In this file, I have a variable declaration as follows:
var showBrowserButtonNavigationWarning = true;
and it is being used in some functions:
function allowBrowserButtonNavigation(event) {
showBrowserButtonNavigationWarning = false;
}
function blockBrowserButtonNavigation() {
showBrowserButtonNavigationWarning = true;
}
SQ reports a violation of rule javascript:S3504
But in this location it should be a var.
I tried to suppress this rule by adding the lines:
@ SuppressWarnings(“javascript:S3504”)
// 3504: Unexpected var, use let or const instead.
and the line:
//noinspection SonarLint/javascript:S3504
but both are not working.
How can I tell SQ to not report this ‘violation’?
Well, I have searched for it and I found that there is a missing of JavaScript comment.
You can use this JS comment to surpass the rule.
/* eslint-disable javascript:S3504 */
var showBrowserButtonNavigationWarning = true;
function allowBrowserButtonNavigation(event) {
showBrowserButtonNavigationWarning = false;
}
function blockBrowserButtonNavigation() {
showBrowserButtonNavigationWarning = true;
}
/* eslint-enable javascript:S3504 */ // Optionally, you can enable it again if needed
To follow up on Gabriel’s comment. There has to be another reason why the issue disappeared. It’s not possible to suppress the issue using eslint directive:
we disable eslint directives in the analyzer internally, to avoid interference with SonarQube issue management
even if previous point didn’t apply, eslint is not aware of sonar’s rule ids, so it couldn’t work using sonar rule id.
I guess something else must have happened with the project for issue to disappear.