Sonar scanner for MSBuild ERROR: Failed to parse file [<path-to-file>l-debug.js] at line 55623: Unexpected token (
Sonar scanner for MSBuild ERROR: Failed to parse file [<path-to-file>l-debug.js] at line 55623: Unexpected token (
尝试对项目进行 运行 sonarqube 扫描,我得到“执行成功”作为 sonarqube 结果,但由于以下错误,bamboo 任务结果处于“失败”状态:
ERROR: Failed to parse file [<path-to-file>l-debug.js] at line 55623: Unexpected token (
ERROR: Failed to parse file [<path-to-file>l3gm-debug.js] at line 55373: Unexpected token (
例如l-debug.js文件,第55623行以“(color:”:
开头
var textStyle = new ol.style.Text({
fill: new ol.style.Fill({
/** @type {ol.Color} */
(color: "color" in object ? object["color"] : ol.format.KML.DEFAULT_COLOR_),
}),
/** @type {number|undefined} */
(scale: object["scale"]),
});
目前正在使用:
SonarQube 版本:7.9.5
声纳扫描仪版本:sonar-scanner-msbuild-5.0.4.24009-net46
我确信,在 bamboo 作业中禁用 SonarQube 报告分析错误时构建失败 将解决问题,但我们没有想看假成功
请指教
更新到 SonarQube 8.9.x 版本修复了这个问题。
尝试对项目进行 运行 sonarqube 扫描,我得到“执行成功”作为 sonarqube 结果,但由于以下错误,bamboo 任务结果处于“失败”状态:
ERROR: Failed to parse file [<path-to-file>l-debug.js] at line 55623: Unexpected token (
ERROR: Failed to parse file [<path-to-file>l3gm-debug.js] at line 55373: Unexpected token (
例如l-debug.js文件,第55623行以“(color:”:
开头 var textStyle = new ol.style.Text({
fill: new ol.style.Fill({
/** @type {ol.Color} */
(color: "color" in object ? object["color"] : ol.format.KML.DEFAULT_COLOR_),
}),
/** @type {number|undefined} */
(scale: object["scale"]),
});
目前正在使用:
SonarQube 版本:7.9.5
声纳扫描仪版本:sonar-scanner-msbuild-5.0.4.24009-net46
我确信,在 bamboo 作业中禁用 SonarQube 报告分析错误时构建失败 将解决问题,但我们没有想看假成功
请指教
更新到 SonarQube 8.9.x 版本修复了这个问题。