https://stackoverflow.com/questions/25112543/sonarqube-4-3-2-javascript-exclude
In your
sonar-project.properties, you have two ways to ignore files:sonar.exclusions=the/full/path/*.xmlwill ignore all.xmlfiles inpath.sonar.exclusions=**/*.xmlwill ignore all.xmlfiles in the folder and sub-folders where you are.
Here are the different wildcards:
* zero or more characters
** zero or more directories
? a single character
You can find more information on Sonar Documentation

No hay comentarios:
Publicar un comentario