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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -