Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
'first-meaningful-paint',
'speed-index-metric',
'estimated-input-latency',
'first-interactive',
'first-cpu-idle',
'consistently-interactive',
],
},
Expand Down Expand Up @@ -129,7 +129,7 @@ The audits property controls which audits to run and include with your Lighthous
{
audits: [
'first-meaningful-paint',
'first-interactive',
'first-cpu-idle',
'byte-efficiency/uses-optimized-images',
]
}
Expand All @@ -151,7 +151,7 @@ The categories property controls how to score and organize the audit results in
description: 'This category judges your performance',
auditRefs: [
{id: 'first-meaningful-paint', weight: 2, group: 'metrics'},
{id: 'first-interactive', weight: 3, group: 'metrics'},
{id: 'first-cpu-idle', weight: 3, group: 'metrics'},
{id: 'consistently-interactive', weight: 5, group: 'metrics'},
],
}
Expand Down
2 changes: 1 addition & 1 deletion docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ In order to extend the Lighthouse configuration programmatically, you need to pa
'first-meaningful-paint',
'speed-index-metric',
'estimated-input-latency',
'first-interactive',
'first-cpu-idle',
'consistently-interactive',
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should probably update consistently-interactive, speed-index-metric, and kill estimated-input-latency if we're updating these now, or could just wait for when we really kill EIL :)

],
},
Expand Down