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.
1 parent d797eb9 commit 23c9e11Copy full SHA for 23c9e11
src/parser.ts
@@ -640,7 +640,7 @@ export class Parser {
640
if (name !== undefined) {
641
if (!/^[a-zA-Z0-9]*$/.test(name)) {
642
throw new ParseError(ParseErrorKind.InvalidCharsInGroupName, this.lastSpan())
643
- } else if (name.length > 32) {
+ } else if (name.length > 128) {
644
throw new ParseError(ParseErrorKind.GroupNameTooLong, this.lastSpan())
645
}
646
0 commit comments