在@angular/cli 的先前版本中,我只是在运行:ng lint --format tslint-teamcity-reporter
但这不再起作用了。
在新angular.json
格式中,我尝试创建一个名为的新配置teamcity
:
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
},
"configurations": {
"teamcity": {
"format": "msbuild"
}
}
}
但输出格式选项不包含与 TeamCity 相关的任何内容。如何添加以前使用的格式化程序?谢谢