Skip to content

Commit

Permalink
fix: removed now invalid comment
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoP authored and hugop95 committed Sep 19, 2024
1 parent a53d04d commit 74d1037
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions rules/sort-classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -680,8 +680,6 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
pairwise(nodes, (left, right) => {
let leftNum = getGroupNumber(options.groups, left)
let rightNum = getGroupNumber(options.groups, right)
// Ignore nodes belonging to `unknown` group when that group is not referenced in the
// `groups` option.

let indexOfLeft = sortedNodes.indexOf(left)
let indexOfRight = sortedNodes.indexOf(right)
Expand Down

0 comments on commit 74d1037

Please sign in to comment.