Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thehanimo committed Feb 18, 2021
1 parent 8081808 commit d92f851
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions bin/run
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env node
/* eslint-disable no-magic-numbers */

'use strict';

Expand Down
3 changes: 2 additions & 1 deletion src/commands/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ const generateTable = (repositories, groupBy) => {
});

Object.entries(groupedObj).forEach((item) => {
table.push([item[0], item[1].join('\n')]);
const [key, value] = item;
table.push([key, value.join('\n')]);
});
} else {
table = new Table({
Expand Down

0 comments on commit d92f851

Please sign in to comment.