Fix eslint max length in github-api.js (#2730)

This commit is contained in:
Ward Peeters 2017-07-24 20:41:31 +02:00 коммит произвёл Paul Irish
Родитель 6478f15ec4
Коммит 1ca40de048
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -116,7 +116,9 @@ class GithubApi {
const filename = Object.keys(json.files)
.find(filename => filename.endsWith(GithubApi.LH_JSON_EXT));
if (!filename) {
throw new Error(`Failed to find a Lighthouse report (*${GithubApi.LH_JSON_EXT}) in gist ${id}`);
throw new Error(
`Failed to find a Lighthouse report (*${GithubApi.LH_JSON_EXT}) in gist ${id}`
);
}
const f = json.files[filename];
if (f.truncated) {