Skip to content

Commit a6705fc

Browse files
committed
lint fixup
1 parent 0ba457b commit a6705fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

browser-extension/src/lib/enhancers/github/githubPRNewComment.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class GitHubPRNewCommentEnhancer implements CommentEnhancer<GitHubPRNewCo
1717
}
1818

1919
tryToEnhance(textarea: HTMLTextAreaElement): GitHubPRNewCommentSpot | null {
20-
if (textarea.id == 'feedback') {
20+
if (textarea.id === 'feedback') {
2121
return null
2222
}
2323
if (document.querySelector('meta[name="hostname"]')?.getAttribute('content') !== 'github.com') {

browser-extension/tests/lib/enhancers/github.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ function enhancements(document: Document) {
1717
for: forValue,
1818
spot: enhanced.spot,
1919
title: enhanced.enhancer.tableTitle(enhanced.spot),
20-
upperDecoration: enhanced.enhancer.tableUpperDecoration(enhanced.spot)
20+
upperDecoration: enhanced.enhancer.tableUpperDecoration(enhanced.spot),
2121
})
2222
} else {
2323
spotsFound.push({
2424
for: forValue,
25-
spot: 'NO_SPOT'
25+
spot: 'NO_SPOT',
2626
})
2727
}
2828
}

0 commit comments

Comments
 (0)