-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add eslint rules #644
Add eslint rules #644
Conversation
@@ -37,20 +38,6 @@ export function mergeDeep(...objects) { | |||
}, {}); | |||
} | |||
|
|||
// Needed to compare layout properties. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it is no longer in use
const tagAName = tags.data?.find(tag => tag.ID === tagA)?.Name; | ||
const tagBName = tags.data?.find(tag => tag.ID === tagB)?.Name; | ||
if (tagAName === undefined || tagBName === undefined) return 0; | ||
return tagAName?.localeCompare(tagBName); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if I broke this or not
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.