Skip to content

Commit 767b046

Browse files
fix lint warnings
1 parent d0040ac commit 767b046

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/archiver.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default class Archiver {
7070
});
7171
});
7272

73-
let packageJSON = {};
73+
const packageJSON = {};
7474

7575
if (typeof this.config.run_settings.package_config_options === 'object') {
7676
Object.assign(packageJSON, this.config.run_settings.package_config_options);
@@ -81,7 +81,7 @@ export default class Archiver {
8181
}
8282

8383
if (Object.keys(packageJSON).length > 0) {
84-
let packageJSONString = JSON.stringify(packageJSON, null, 4);
84+
const packageJSONString = JSON.stringify(packageJSON, null, 4);
8585
archive.append(packageJSONString, { name: 'testingbot-package.json' });
8686
}
8787

0 commit comments

Comments
 (0)