javascript - How to specify wildcards in sonar-project.properties -
i trying use sonarqube scan ui modules, have. ui modules lot in number. have common structure. each module has own js files.
i need specify sonar.sources value match js files in project. possible this?
sonar.sources=*/*/script
sonar.language=js
i used these. but, got error 'unable resolve path'. can 1 help?
try use wildcard :
* match 0 or more characters ** match 0 or more directories ? match single character
sonar.sources=**/script
Comments
Post a Comment