这是我的sonar-project.properties
sonar.sources=src/ts
sonar.exclusions=**/*.less
sonar.tests=__tests__/ts
sonar.test.inclusions=**/*.ts
sonar.ts.lcov.reportpath=./coverage/coverage.lcov
当我运行时,我得到了
INFO: Excluded sources:
INFO: **/*.less
INFO: **/*.ts
INFO: Included tests:
INFO: **/*.ts
INFO: 0 files indexed
INFO: 44 files ignored because of inclusion/exclusion patterns
为什么我的**/*.ts
被排除?!
答案 0 :(得分:0)
所有符合sonar.test.inclusions
模式的文件都会自动从源中排除。要修复配置,您需要将其值更改为sonar.test.inclusions=__tests__/ts/**/*.ts
。