Skip to content

Commit bd5f8e1

Browse files
authored
Fixes lint errors
1 parent 563ae0c commit bd5f8e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lighthouse-extension/gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ gulp.task('browserify', () => {
108108
});
109109

110110
// In the case of our lighthouse-core script, we've got extra work to do
111-
if (file.path.includes('app/src/lighthouse-background.js')){
111+
if (file.path.includes('app/src/lighthouse-background.js')) {
112112
// Do the additional transform to convert references to devtools-timeline-model
113113
// to the modified version internal to Lighthouse.
114114
bundle.transform('./dtm-transform.js', {
@@ -117,7 +117,7 @@ gulp.task('browserify', () => {
117117
.ignore('chrome-remote-interface');
118118

119119
// Expose the audits and gatherers so they can be dynamically loaded.
120-
const corePath = "../lighthouse-core/";
120+
const corePath = '../lighthouse-core/';
121121
const driverPath = `${corePath}driver/`;
122122
audits.forEach(audit => {
123123
bundle = bundle.require(audit, {expose: audit.replace(corePath, '../')});

0 commit comments

Comments
 (0)