Skip to content

Commit e1af036

Browse files
committed
Fix prettier
1 parent 009ecd0 commit e1af036

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

lib/help.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,11 @@ exports.run = function() {
5252
const category = categories[key];
5353
console.log('');
5454
console.log(category.desc);
55-
category.commands.sort((a, b) => a.weight > b.weight).forEach(command => {
56-
console.log(command.text);
57-
});
55+
category.commands
56+
.sort((a, b) => a.weight > b.weight)
57+
.forEach(command => {
58+
console.log(command.text);
59+
});
5860
});
5961

6062
console.log('');

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)