Buscar contenidos

jueves, 30 de agosto de 2018

Exclude JavaScript libraries from Sonar

https://stackoverflow.com/questions/12221770/exclude-javascript-libraries-from-sonar
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 in path.
  • 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