[plugin-helpers/eslint] remove unused vars

This commit is contained in:
spalger 2018-02-06 18:06:08 -07:00
parent 3a6be3580c
commit d2df52a68a

View file

@ -50,7 +50,7 @@ program
.command('test')
.description('Run the server and browser tests')
.on('--help', docs('test/all'))
.action(taskRunner(function (command) {
.action(taskRunner(function () {
run('testAll');
}));
@ -79,7 +79,7 @@ program
program
.command('postinstall')
.action(taskRunner(function (command) {
.action(taskRunner(function () {
run('postinstall');
}));