我想在Angular 6项目中设置SonarTS,但是在运行lint
npm脚本时,我也会对.spec文件进行代码分析。有时需要在.spec文件中进行复制,所以如何在不跳过.spec文件的情况下将其停用?
npm脚本
"lint": "tslint -p src/tsconfig.tslint.json -t stylish -c tslint.json",
package.json 中的devDependency
"tslint-sonarts": "^1.7.0",
tslint.json
"extends": [
"@ns/tslint-presets/tslint.recommended.angular.json",
"tslint-config-prettier",
"tslint-sonarts"
],
tsconfig.json (这也会跳过掉毛,这是不希望的!)
"exclude": [
"node_modules",
"**/*.spec.ts"
],