我已将 sonarqube 集成到我正在运行的 Node JS 项目中,并且它似乎与 javascript 插件一起工作正常。我想知道是否有任何方法可以特别提到 sonarqube 来检查 javascript 作为 Node JS?
运行声纳的配置在 gruntfile.js 中指定,如下所示,
sonarRunner: {
analysis: {
options: {
debug: true,
separator: '\n',
dryRun: false,
sonar: {
host: {
url: 'http://localhost:9000'
},
jdbc: {
url: 'jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance',
username: 'root',
password: 'root'
},
projectKey: 'sonar:grunt-sonar-runner:0.1.0',
projectName: 'Grunt Sonar Runner',
projectVersion: '0.10',
sources: '/app/scripts/controllers',
language:'js',
sourceEncoding: 'UTF-8'
}
}
}
}