From 001c9004d11b9e12eca71d2f8c2c1f59837e1a02 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Wed, 25 Apr 2018 15:01:22 -0700 Subject: [PATCH] lint. --- lighthouse-core/gather/computed/manifest-values.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lighthouse-core/gather/computed/manifest-values.js b/lighthouse-core/gather/computed/manifest-values.js index 8aa8495655e5..ec258ac994fd 100644 --- a/lighthouse-core/gather/computed/manifest-values.js +++ b/lighthouse-core/gather/computed/manifest-values.js @@ -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, },