Skip to content

Commit

Permalink
chore: linting pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Dec 31, 2024
1 parent 83c6ece commit 3f45fe6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rules/order.js
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ function computeRank(context, ranks, importEntry, excludedImportTypes) {
if (rank === undefined) {
rank = ranks.groups[impType];

if(rank === undefined) {
if (rank === undefined) {
return -1;
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/src/rules/order.js
Original file line number Diff line number Diff line change
Expand Up @@ -3309,7 +3309,7 @@ context('TypeScript', function () {
alphabetize: { order: 'asc' },
groups: ['builtin', 'type', 'unknown', 'external'],
sortTypesGroup: true,
'newlines-between': 'always'
'newlines-between': 'always',
},
],
}),
Expand Down

0 comments on commit 3f45fe6

Please sign in to comment.