Skip to content

Commit 7bb9cbe

Browse files
committed
chore: remove unneed type
1 parent d434db2 commit 7bb9cbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/textlint-rule-no-nfd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const reporter: TextlintRuleReporter = function (context) {
1515
return;
1616
}
1717
const text = getSource(node);
18-
matchCaptureGroupAll(text, /([\u309b\u309c\u309a\u3099])/g).forEach(({index}: { index: number }) => {
18+
matchCaptureGroupAll(text, /([\u309b\u309c\u309a\u3099])/g).forEach(({index}) => {
1919
if (index === 0) {
2020
return;
2121
}

0 commit comments

Comments
 (0)