You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is more of a question than reporting a issue, does this support doing incremental analysis by adding cache property to plugin configuration ?
Or something on the similar lines, the general idea is , if only 5 lines of code were changed since last commit, spotbugs does not need to analyze the entire repository code.
The text was updated successfully, but these errors were encountered:
In Eclipse plugin we do a trick to reduce the analysis to only changed classes (we run on "save" editor). This is faster, but this does not find all possible issues and also reports few false positives like "method xyz not used" (because it only analyses a subset of application classes).
Nevertheless you could try this approach in your case.
This is more of a question than reporting a issue, does this support doing incremental analysis by adding
cache
property to plugin configuration ?Or something on the similar lines, the general idea is , if only 5 lines of code were changed since last commit, spotbugs does not need to analyze the entire repository code.
The text was updated successfully, but these errors were encountered: