Skip to content

Commit 3c001ce

Browse files
committed
delint
1 parent 1beee59 commit 3c001ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const deasync = require('deasync-promise');
33
const glob = require('glob-all');
44
const JSZip = require('jszip');
55
const tape = require('tape');
6-
const { removeSync, readFileSync, readdirSync } = require('fs-extra');
6+
const { removeSync, readFileSync } = require('fs-extra');
77
const { sep } = require('path');
88

99
const { getUserCachePath } = require('./lib/shared');
@@ -27,8 +27,8 @@ const mkCommand = cmd => (args, options = {}) => {
2727
);
2828
if (error) throw error;
2929
if (status) {
30-
console.error(stdout.toString());
31-
console.error(stderr.toString());
30+
console.error(stdout.toString()); // eslint-disable-line no-console
31+
console.error(stderr.toString()); // eslint-disable-line no-console
3232
throw new Error(`${cmd} failed with status code ${status}`);
3333
}
3434
return stdout && stdout.toString().trim();

0 commit comments

Comments
 (0)