diff --git a/lib/utils.js b/lib/utils.js index 8e6dcc6..c00365a 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -125,6 +125,7 @@ function processLintResults(engine, report, data) { else { rule.annotations.push(annotation); } + console.warn('ESLint Annotation: ', annotation); annotations.push(annotation); } } diff --git a/src/utils.ts b/src/utils.ts index 5f4147e..3d5ae82 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -200,6 +200,8 @@ export function processLintResults( rule.annotations.push(annotation); } + console.warn('ESLint Annotation: ', annotation); + annotations.push(annotation); } }