Skip to content

Commit

Permalink
Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mjcuva committed Jun 7, 2019
1 parent 009ecd0 commit e1af036
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions lib/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ exports.run = function() {
const category = categories[key];
console.log('');
console.log(category.desc);
category.commands.sort((a, b) => a.weight > b.weight).forEach(command => {
console.log(command.text);
});
category.commands
.sort((a, b) => a.weight > b.weight)
.forEach(command => {
console.log(command.text);
});
});

console.log('');
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e1af036

Please sign in to comment.