We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79a8771 commit 37df62eCopy full SHA for 37df62e
analyzer.go
@@ -25,10 +25,12 @@ var _ lookout.AnalyzerServer = &Analyzer{}
25
func (a *Analyzer) NotifyReviewEvent(ctx context.Context, e *lookout.ReviewEvent) (
26
*lookout.EventResponse, error) {
27
changes, err := a.DataClient.GetChanges(ctx, &lookout.ChangesRequest{
28
- Head: &e.Head,
29
- Base: &e.Base,
30
- WantContents: true,
31
- WantLanguage: true,
+ Head: &e.Head,
+ Base: &e.Base,
+ WantContents: true,
+ WantLanguage: true,
32
+ WantUAST: false,
33
+ ExcludeVendored: true,
34
})
35
if err != nil {
36
log.Errorf(err, "failed to GetChanges from a DataService")
0 commit comments