Skip to content

Commit 3fd081b

Browse files
Suppress new ESLint error
Ignore error from CharTrie recursive structure.
1 parent f8a6e1f commit 3fd081b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/types/charTrie.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ interface CharTrieData {
44

55
export type Char = string;
66

7+
// eslint-disable-next-line no-use-before-define
78
export class CharTrie extends Map<Char, CharTrie> {
89
public static create(trieData: CharTrieData): CharTrie {
910
const trieDataPairs = Object.entries(trieData);

0 commit comments

Comments
 (0)