Skip to content

Commit 419eeec

Browse files
committed
ignore generated antlr files
1 parent 034b2e0 commit 419eeec

4 files changed

Lines changed: 12617 additions & 16317 deletions

File tree

.oxfmtrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"**/storybook-static/",
2222
"**/.changeset/",
2323
"**/dist/",
24-
"**/*.yaml"
24+
"**/*.yaml",
25+
"internal-packages/tsql/src/grammar/"
2526
]
2627
}

internal-packages/tsql/src/grammar/TSQLLexer.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
// put any global imports you need here
44

5-
import { type ATN } from "antlr4ts/atn/ATN";
5+
import { ATN } from "antlr4ts/atn/ATN";
66
import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer";
7-
import { type CharStream } from "antlr4ts/CharStream";
7+
import { CharStream } from "antlr4ts/CharStream";
88
import { Lexer } from "antlr4ts/Lexer";
99
import { LexerATNSimulator } from "antlr4ts/atn/LexerATNSimulator";
1010
import { NotNull } from "antlr4ts/Decorators";
1111
import { Override } from "antlr4ts/Decorators";
12-
import { type RuleContext } from "antlr4ts/RuleContext";
13-
import { type Vocabulary } from "antlr4ts/Vocabulary";
12+
import { RuleContext } from "antlr4ts/RuleContext";
13+
import { Vocabulary } from "antlr4ts/Vocabulary";
1414
import { VocabularyImpl } from "antlr4ts/VocabularyImpl";
1515

1616
import * as Utils from "antlr4ts/misc/Utils";

0 commit comments

Comments
 (0)