Skip to content

Commit

Permalink
Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed Apr 13, 2017
1 parent deb41ca commit 74d28b8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions lighthouse-core/report/v2/renderer/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

'use strict';

/* eslint-env browser */

/**
* Logs messages via a UI butter.
* @class
Expand Down
3 changes: 1 addition & 2 deletions lighthouse-core/report/v2/renderer/report-features.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
*/
'use strict';

/* globals Logger */
/* eslint-env browser */
/* globals document window URL Blob Logger */

class ReportFeatures {

Expand Down
3 changes: 1 addition & 2 deletions lighthouse-core/report/v2/renderer/report-renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
*/

/* globals DOM, DetailsRenderer, ReportFeatures */
/* eslint-env browser */

const RATINGS = {
PASS: {label: 'pass', minScore: 75},
Expand Down Expand Up @@ -62,7 +61,7 @@ function formatNumber(number) {
*/
function formatDateTime(date) {
const options = {
month: 'numeric', day: 'numeric', year: 'numeric',
month: 'short', day: 'numeric', year: 'numeric',
hour: 'numeric', minute: 'numeric', timeZoneName: 'short'
};
let formatter = new Intl.DateTimeFormat('en-US', options);
Expand Down

0 comments on commit 74d28b8

Please sign in to comment.