Skip to content

Commit

Permalink
fix: log annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
bradennapier committed Aug 12, 2020
1 parent 8c9ac9b commit 5f7f134
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ function processLintResults(engine, report, data) {
else {
rule.annotations.push(annotation);
}
console.warn('ESLint Annotation: ', annotation);
annotations.push(annotation);
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ export function processLintResults(
rule.annotations.push(annotation);
}

console.warn('ESLint Annotation: ', annotation);

annotations.push(annotation);
}
}
Expand Down

0 comments on commit 5f7f134

Please sign in to comment.