Does anyone know if there is SONAR extension for filtering violations by user/author who introduced them ?
Idea is to pick a user, and SONAR would list all violations made in the code by that specific user.
Maybe some ideas could be provided if it is possible to achieve such functionality ?
Thanks.
You could also use the REST-API to get the violations (something like ‘http://sonar-host/api/violations?resource=1&depth=-1&priorities=BLOCKER,CRITICAL,MAJOR’) to get the interesting violations and then use ‘svn annotate’ to get the relevant annotions and therefore the user. That is what I did, and in the meantime it works well.