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/*.xml
will ignore all.xml
files inpath
.sonar.exclusions=**/*.xml
will ignore all.xml
files 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