We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
countOptions
afterCount
getTokens()
1 parent e003cee commit ef985dcCopy full SHA for ef985dc
apps/oxlint/src-js/plugins/tokens.ts
@@ -87,6 +87,7 @@ export function getTokens(
87
afterCount?: number | null,
88
): Token[] {
89
if (tokens === null) initTokens();
90
+ // TODO: Implement `countOptions` and `afterCount`.
91
return tokens.filter((token) => token.range[0] >= node.range[0] && token.range[1] <= node.range[1]);
92
}
93
/* oxlint-enable no-unused-vars */
0 commit comments