Skip to content

Commit

Permalink
lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Apr 25, 2018
1 parent 27d89a3 commit 001c900
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lighthouse-core/gather/computed/manifest-values.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ class ManifestValues extends ComputedArtifact {
},
{
id: 'shortNameLength',
failureText: `Manifest\'s \`short_name\` is too long (>${SUGGESTED_SHORTNAME_LENGTH} characters) to be displayed on a homescreen without truncation`,
failureText: `Manifest's \`short_name\` is too long (>${SUGGESTED_SHORTNAME_LENGTH} ` +
`characters) to be displayed on a homescreen without truncation`,
validate: manifest => !!manifest.value.short_name.value &&
manifest.value.short_name.value.length <= SUGGESTED_SHORTNAME_LENGTH,
},
Expand Down

0 comments on commit 001c900

Please sign in to comment.