Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
milutin committed Apr 9, 2021
1 parent 18778d8 commit 8b72391
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lighthouse-core/audits/deprecations.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ class Deprecations extends Audit {
const entries = artifacts.ConsoleMessages;

const deprecations = entries.filter(log => log.source === 'deprecation')
/** Temporary ignore until Chrome M91 became stable version that doesn't throw deprecation on ::-webkit-details-marker. */
// Temporary ignore until Chrome M91 became stable version.
// M91 doesn't throw deprecation on ::-webkit-details-marker.
.filter(log => !log.text.includes('::-webkit-details-marker'))
.map(log => {
return {
Expand Down

0 comments on commit 8b72391

Please sign in to comment.