I am trying to create an utility that will get automated code review for code on github using stylecop rules. Right now the stylecop SDK works only with the entire file - so to make review for the commit I need to download the file and run stylecop all over it. And for every (even minor) commits - I need to do the same.
So I am just wondering if there is a way to make stylecop work with the diff for current commit ? That will allow me to ensure I am reviewing only changes of the current commit and current author.