Skip to content

Commit ba9e1d8

Browse files
committed
fix: remove log
1 parent 03db612 commit ba9e1d8

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/textlint-rule-pattern.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,6 @@ const report: TextlintRuleReporter<Options> = (context, options) => {
6666
if (isCodeNode && !pattern.forceCode) {
6767
continue;
6868
}
69-
if (isCodeNode) {
70-
console.log({
71-
type: node.type,
72-
pattern,
73-
isCodeNode,
74-
text
75-
});
76-
}
7769
const results = matchPatterns(text, [pattern.pattern]);
7870
for (const result of results) {
7971
const index = result.startIndex || 0;

0 commit comments

Comments
 (0)