Skip to content

Commit

Permalink
Merge pull request #120 from mkslanc/fix-eslint-ignore-message
Browse files Browse the repository at this point in the history
Fix: eslint is not ignoring errors
  • Loading branch information
mkslanc committed May 16, 2024
2 parents ba5203a + 3f3beea commit 8d1b44d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ export function toDiagnostics(diagnostics: Diagnostic[], filterErrors: FilterDia
if (!diagnostics) {
return [];
}
return CommonConverter.excludeByErrorMessage(diagnostics).map((error) => toDiagnostic(error, filterErrors));
return CommonConverter.excludeByErrorMessage(diagnostics, filterErrors.errorMessagesToIgnore).map((error) => toDiagnostic(error, filterErrors));
}

0 comments on commit 8d1b44d

Please sign in to comment.