Skip to content

Commit d15c43f

Browse files
committed
chore(util): increase max ident len
1 parent edd939f commit d15c43f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/common/util/core/src/check.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use lazy_static::lazy_static;
22
use regex::{Regex, RegexBuilder};
33

4-
pub const MAX_IDENT_LEN: usize = 16;
4+
pub const MAX_IDENT_LEN: usize = 64;
5+
// TODO: Do we still need long idents?
56
pub const MAX_IDENT_LONG_LEN: usize = 64;
67
pub const MAX_DISPLAY_NAME_LEN: usize = 24;
78
pub const MAX_DISPLAY_NAME_LONG_LEN: usize = 128;

0 commit comments

Comments
 (0)